Amazon Local Currency
Display Amazon prices in your local currency.
Amazon Local Currencyとは何ですか?
Amazon Local CurrencyはYossi Francesによって開発されたChromeの拡張機能で、その主な機能は「Display Amazon prices in your local currency.」です。
拡張機能のスクリーンショット
Amazon Local Currency拡張機能のCRXファイルをダウンロード
Amazon Local Currency拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Display Amazon prices on your local currency.
Logo: "Conversion" by Delwar Hossain from the Noun Project (https://thenounproject.com/) 拡張機能の基本情報
| 名前 | |
| ID | hgbdbdlpcfhpindpjemalpcklpoececp |
| 公式URL | https://chromewebstore.google.com/detail/amazon-local-currency/hgbdbdlpcfhpindpjemalpcklpoececp |
| 説明 | Display Amazon prices in your local currency. |
| ファイルサイズ | 571 KB |
| インストール数 | 458 |
| 現在のバージョン | 1.0.3 |
| 最終更新日 | 2021-08-16 |
| 公開日 | 2019-02-26 |
| 評価 | 3.82/5 合計 11 レビュー |
| 開発者 | Yossi Frances |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/yfrans/amazon-local-currency |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Amazon Local Currency",
"description": "Display Amazon prices in your local currency.",
"author": "Yossi Frances",
"version": "1.0.3",
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"64": "icons\/64.png",
"96": "icons\/96.png",
"128": "icons\/128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.amazon.com\/*",
"*:\/\/*.amazon.co.uk\/*",
"*:\/\/*.amazon.de\/*",
"*:\/\/*.amazon.es\/*",
"*:\/\/*.amazon.fr\/*",
"*:\/\/*.amazon.it\/*",
"*:\/\/*.amazon.co.jp\/*"
],
"js": [
"script.js"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html"
},
"permissions": [
"storage",
"https:\/\/amazon-local-currency.herokuapp.com\/"
]
} | |