diff --git a/Block/Adminhtml/System/Config/Form/Field/DeveloperIps.php b/Block/Adminhtml/System/Config/Form/Field/DeveloperIps.php
new file mode 100644
index 0000000..e8fa854
--- /dev/null
+++ b/Block/Adminhtml/System/Config/Form/Field/DeveloperIps.php
@@ -0,0 +1,69 @@
+_remoteAddress = $remoteAddress;
+ }
+
+ /**
+ * Remove scope label
+ *
+ * @param AbstractElement $element
+ * @return string
+ */
+ public function render(AbstractElement $element)
+ {
+ $element->unsScope()->unsCanUseWebsiteValue()->unsCanUseDefaultValue();
+ return parent::render($element);
+ }
+
+ /**
+ * Return element html
+ *
+ * @param AbstractElement $element
+ * @return string
+ */
+ protected function _getElementHtml(AbstractElement $element)
+ {
+ return $this->_toHtml();
+ }
+
+ /**
+ * return String IP address
+ */
+ public function getIpAddress()
+ {
+ return $this->_remoteAddress->getRemoteAddress();
+ }
+}
+
diff --git a/etc/adminhtml/system.xml b/etc/adminhtml/system.xml
index c3981e8..51840b5 100644
--- a/etc/adminhtml/system.xml
+++ b/etc/adminhtml/system.xml
@@ -61,6 +61,10 @@