Local
Find Amazon products locally. Get what you want today, with no shipping cost!
Localとは何ですか?
Localはberger.m.sophieによって開発されたChromeの拡張機能で、その主な機能は「Find Amazon products locally. Get what you want today, with no shipping cost!」です。
拡張機能のスクリーンショット
Local拡張機能のCRXファイルをダウンロード
Local拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is an extension that allows users to search for Amazon products in their own surrounding in order to find local stores at which to buy the desired items. 1) Open up the product page on Amazon 2) Click the extension icon in your bookmarks bar 3) See all the relevant stores on a map!
拡張機能の基本情報
名前 | Local |
ID | apdmmfimgdclckmmkjkojbgmeinlloah |
公式URL | https://chromewebstore.google.com/detail/local/apdmmfimgdclckmmkjkojbgmeinlloah |
説明 | Find Amazon products locally. Get what you want today, with no shipping cost! |
ファイルサイズ | 11.91 KB |
インストール数 | 523 |
現在のバージョン | 2.1 |
最終更新日 | 2022-10-07 |
公開日 | 2022-02-02 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | berger.m.sophie |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Local", "description": "Find Amazon products locally. Get what you want today, with no shipping cost!", "version": "2.1", "permissions": [ "scripting" ], "host_permissions": [ "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/*", "https:\/\/www.amazon.ca\/*", "https:\/\/www.amazon.co.uk\/*", "https:\/\/www.amazon.at\/*", "https:\/\/www.amazon.de\/*" ], "js": [ "contentScript.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icons8-shop-local-16.png", "32": "images\/icons8-shop-local-32.png", "48": "images\/icons8-shop-local-48.png", "100": "images\/icons8-shop-local-100.png" }, "default_popup": "popup.html" }, "icons": { "16": "images\/icons8-shop-local-16.png", "32": "images\/icons8-shop-local-32.png", "48": "images\/icons8-shop-local-48.png", "100": "images\/icons8-shop-local-100.png" } } |