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! 擴展基本資訊
| 名稱 | |
| ID | iffmfknpimppjfoionhiffohdljiedai |
| 官方網址 | 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 |
| 電子郵箱 | [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"
]
}
} | |