Website IP
Simple script which places the IP of the current website in the bottom right.
Τι είναι το Website IP;
Το Website IP είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://tinybigideas.com, και η κύρια λειτουργία του είναι "Simple script which places the IP of the current website in the bottom right.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Website IP
Λήψη αρχείων επέκτασης Website IP σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension simply adds the IP of the current website you are viewing to the bottom right. FEATURES: * Simple solution to always show the current websites IP address instead of clicking through an extension * Moves left or right on mouse over, it won't get in your way * IPv6 support * No external server to return IP - your chrome does all the work locally * Clean, attractive and does the job. PRIVACY: No-one sees the IP but you. There is no reliance on an external server to return the IP. Chrome returns the IP address itself on the users side. This takes into consideration local DNS and Host changes. If you like this extension please leave a comment below. I'd love to hear what you think about it and what features you'd like to see in later versions. Currently I'm planning a few features: 'Copy IP to clickboard' - This will be available from the popup options in the next version and the ability to disable on certain websites. I created this extension to solve a problem no other IP extension attempted. To quickly show the current websites IP at all times. I use that information daily as a web developer and it has solved my problem. No longer do I have to click through an extension to see the IP, it's just there - bottom right. Hopefully this extension will help you out too. Let me know in the comments and review generously if it has. CHANGELOG: v1.5.2 * Website IP no longer shows on print screens * Extension has been updated to remove errors associated with newer extension changes for Chrome 18+ v1.5.1 * Fixed hover over behaviour to switch IP left and right v1.5.0 * New Feature: IPv6 support * New Feature: No more reliance on an external server to return the IP, it is now completely on the users side allowing host changes and DNS changes to reflect instantly * Bug fix: Extension ID on pop-up - caused by the extension running within itself v1.0.1 * Found it was still using my personal testing link for the IP return, now updated to the correct link that will improve speeds to near instant Note: This is now available on github for you if you'd like to tinker: https://github.com/tinybigideas/WebsiteIP
Βασικές Πληροφορίες Επέκτασης
Όνομα | Website IP |
ID | ghbmhlgniedlklkpimlibbaoomlpacmk |
Επίσημο URL | https://chromewebstore.google.com/detail/website-ip/ghbmhlgniedlklkpimlibbaoomlpacmk |
Περιγραφή | Simple script which places the IP of the current website in the bottom right. |
Μέγεθος Αρχείου | 55.94 KB |
Αριθμός Εγκαταστάσεων | 71,115 |
Τρέχουσα Έκδοση | 1.5.2 |
Τελευταία Ενημέρωση | 2013-03-03 |
Ημερομηνία Δημοσίευσης | 2013-03-03 |
Αξιολόγηση | 4.07/5 Συνολικά 205 Αξιολογήσεις |
Προγραμματιστής | https://tinybigideas.com |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://tinybigideas.com/browser-extensions/website-ip/ |
Διεύθυνση URL της Σελίδας Βοήθειας | http://tinybigideas.com/browser-extensions/website-ip/ |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Website IP", "version": "1.5.2", "minimum_chrome_version": "18", "manifest_version": 2, "description": "Simple script which places the IP of the current website in the bottom right.", "icons": { "16": "\/images\/icon16.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "webRequest" ], "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "\/images\/icon48.png", "default_popup": "popup.html", "default_title": "Website IP Options" }, "content_scripts": [ { "all_frames": false, "run_at": "document_end", "js": [ "jquery.ip.js", "ip.js" ], "css": [ "css\/ip.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |