Shopping Advisor
Automatically displays the lowest price on whatever you’re buying
Shopping Advisorとは何ですか?
Shopping Advisorはhttp://www.getshoppingadvisor.comによって開発されたChromeの拡張機能で、その主な機能は「Automatically displays the lowest price on whatever you’re buying」です。
拡張機能のスクリーンショット
Shopping Advisor拡張機能のCRXファイルをダウンロード
Shopping Advisor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
拡張機能の基本情報
名前 | |
ID | jjcnejicgmlgoliaajankeibhokhgojl |
公式URL | https://chrome.google.com/webstore/detail/shopping-advisor/jjcnejicgmlgoliaajankeibhokhgojl |
説明 | Automatically displays the lowest price on whatever you’re buying |
ファイルサイズ | 199 KB |
インストール数 | 121 |
現在のバージョン | 1.1.1 |
最終更新日 | 2018-03-07 |
公開日 | 2018-03-07 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | http://www.getshoppingadvisor.com |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Shopping Advisor", "description": "Automatically displays the lowest price on whatever you\u2019re buying", "version": "1.1.1", "browser_action": { "default_title": "Shopping Advisor" }, "icons": { "128": "images\/icon128.png" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "content_scripts": [ { "css": [ "main.css" ], "run_at": "document_end", "matches": [ "https:\/\/www.ebay.com\/itm\/*", "https:\/\/www.amazon.com\/*", "https:\/\/www.banggood.com\/*", "https:\/\/www.aliexpress.com\/item\/*" ], "js": [ "jquery-3.2.1.min.js", "currency.js", "sites\/amazon.js", "sites\/ebay.js", "sites\/aliexpress.js", "sites\/banggood.js", "main.js" ] } ], "permissions": [ "https:\/\/*.ebay.com\/*", "https:\/\/*.amazon.com\/*", "https:\/\/*.aliexpress.com\/*", "https:\/\/*.banggood.com\/*", "https:\/\/us-central1-mymedia-innovation.cloudfunctions.net\/*", "activeTab", "storage" ], "web_accessible_resources": [ "images\/logo-extension.png", "images\/popup-point.png", "images\/icon-close.png", "images\/site-logo-ebay.png", "images\/site-logo-amazon.png", "images\/site-logo-aliexpress.png", "images\/site-logo-banggood.png", "AvenirNextLTPro-Regular.ttf", "AvenirNextLTPro-Bold.ttf" ] } |