ASIN Super Extractor
Extract ASIN from amazon product
ASIN Super Extractorとは何ですか?
ASIN Super Extractorはkiwi merchによって開発されたChromeの拡張機能で、その主な機能は「Extract ASIN from amazon product」です。
拡張機能のスクリーンショット
ASIN Super Extractor拡張機能のCRXファイルをダウンロード
ASIN Super Extractor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
ASIN Super Extractor is a free tool made to get Amazon Standard Identification Number information from product page you visit on Amazon. It works for Amazon(dot)com and other Amazon related websites. Just visit the page with the products and click on the extension icon to get all the ASINs available from that page. From There you can then copy all ASIN to your clipboard with just one click.
拡張機能の基本情報
名前 | ASIN Super Extractor |
ID | fbldpeailkijnbbmgggmddhhngohkbih |
公式URL | https://chromewebstore.google.com/detail/asin-super-extractor/fbldpeailkijnbbmgggmddhhngohkbih |
説明 | Extract ASIN from amazon product |
ファイルサイズ | 19.69 KB |
インストール数 | 324 |
現在のバージョン | 0.0.1 |
最終更新日 | 2020-08-24 |
公開日 | 2020-06-14 |
開発者 | kiwi merch |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ASIN Super Extractor", "version": "0.0.1", "manifest_version": 2, "description": "Extract ASIN from amazon product", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": false }, "browser_action": { "default_icon": "icons\/icon16.png", "default_title": "ASIN Super Extractor", "default_popup": "src\/browser_action\/browser_action.html" }, "permissions": [ "clipboardWrite", "activeTab" ], "content_scripts": [ { "matches": [ "*:\/\/www.amazon.com\/*", "*:\/\/www.amazon.fr\/*" ], "js": [ "src\/inject\/inject.js" ], "run_at": "document_end", "all_frames": false } ] } |