Change GeoLocation
This extension can change(fake) the geo location as you want
Τι είναι το Change GeoLocation;
Το Change GeoLocation είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον yume, και η κύρια λειτουργία του είναι "This extension can change(fake) the geo location as you want".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Change GeoLocation
Λήψη αρχείων επέκτασης Change GeoLocation σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension overrides the getCurrentPosition() method of Geolocation API in HTML5 Hence current position follows the setting you save in popup menu. some sites seem not to work correctly as user mentioned in review. I think its due to the timing the override the current position. If you have a trouble, please notify the web page where this doesn't work. FYI, try this site http://html5demos.com/geo
Βασικές Πληροφορίες Επέκτασης
Όνομα | Change GeoLocation |
ID | njjpmclekpigefnogajiknnheheacoaj |
Επίσημο URL | https://chromewebstore.google.com/detail/change-geolocation/njjpmclekpigefnogajiknnheheacoaj |
Περιγραφή | This extension can change(fake) the geo location as you want |
Μέγεθος Αρχείου | 44.84 KB |
Αριθμός Εγκαταστάσεων | 7,268 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2015-08-13 |
Ημερομηνία Δημοσίευσης | 2015-08-12 |
Αξιολόγηση | 2.27/5 Συνολικά 67 Αξιολογήσεις |
Προγραμματιστής | yume |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Change GeoLocation", "version": "1.0", "manifest_version": 2, "description": "This extension can change(fake) the geo location as you want", "icons": { "16": "icons\/icon.png", "48": "icons\/icon.png", "128": "icons\/icon.png" }, "browser_action": { "default_icon": "icons\/icon.png", "default_title": "Setting", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-2.1.3.min.js", "content.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "background.js" ] } } |