Change GeoLocation
This extension can change(fake) the geo location as you want
Change GeoLocationとは何ですか?
Change GeoLocationはyumeによって開発されたChromeの拡張機能で、その主な機能は「This extension can change(fake) the geo location as you want」です。
拡張機能のスクリーンショット
Change GeoLocation拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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" ] } } |