Amazon BSR & Rating Colorizer
Color codes BSR and ratings on Amazon
Amazon BSR & Rating Colorizerとは何ですか?
Amazon BSR & Rating ColorizerはViktor Nilssonによって開発されたChromeの拡張機能で、その主な機能は「Color codes BSR and ratings on Amazon」です。
拡張機能のスクリーンショット
Amazon BSR & Rating Colorizer拡張機能のCRXファイルをダウンロード
Amazon BSR & Rating Colorizer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
** NEW ** Added support for new Amazon sites. This plugin extends the plugin 'DS Amazon Quick View Extended' by adding colorized BSR numbers based on your desired BSR range. * Now also color codes ratings. * Possible to disable and enable features. Feel free to report bugs and feature request when reviewing the extension. IMPORTANT!! To use this extension you need to: * Have 'DS Amazon Quick View Extended' installed * After installation enter a BSR Range by pressing the extension icon Enjoy!
拡張機能の基本情報
名前 | Amazon BSR & Rating Colorizer |
ID | iffmfknpimppjfoionhiffohdljiedai |
公式URL | https://chromewebstore.google.com/detail/amazon-bsr-rating-coloriz/iffmfknpimppjfoionhiffohdljiedai |
説明 | Color codes BSR and ratings on Amazon |
ファイルサイズ | 41.87 KB |
インストール数 | 10,000 |
現在のバージョン | 1.2.4 |
最終更新日 | 2022-02-22 |
公開日 | 2017-09-04 |
評価 | 2.94/5 合計 17 レビュー |
開発者 | Viktor Nilsson |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazon BSR & Rating Colorizer", "short_name": "BSR Colorizer", "description": "Color codes BSR and ratings on Amazon", "author": "Viktor Nilsson", "homepage_url": "http:\/\/www.viktornilsson.com", "version": "1.2.4", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon48.png", "default_popup": "popup.html", "default_title": "BSR Colorizer" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.amazon.eg\/*", "*:\/\/*.amazon.com.br\/*", "*:\/\/*.amazon.ca\/*", "*:\/\/*.amazon.com.mx\/*", "*:\/\/*.amazon.com\/*", "*:\/\/*.amazon.cn\/*", "*:\/\/*.amazon.in\/*", "*:\/\/*.amazon.co.jp\/*", "*:\/\/*.amazon.sg\/*", "*:\/\/*.amazon.ae\/*", "*:\/\/*.amazon.sa\/*", "*:\/\/*.amazon.fr\/*", "*:\/\/*.amazon.de\/*", "*:\/\/*.amazon.it\/*", "*:\/\/*.amazon.nl\/*", "*:\/\/*.amazon.pl\/*", "*:\/\/*.amazon.es\/*", "*:\/\/*.amazon.se\/*", "*:\/\/*.amazon.com.tr\/*", "*:\/\/*.amazon.co.uk\/*", "*:\/\/*.amazon.com.au\/*" ], "css": [ "bsr.css" ], "js": [ "jquery-3.2.1.min.js", "bsrpainter.js" ] } ], "background": { "scripts": [ "background.js" ] } } |