SLEEKer
This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.
什么是SLEEKer?
SLEEKer是由Rstudioworks开发的Chrome扩展程序,该扩展的主要功能是“This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.”。
扩展截图
下载SLEEKer扩展crx文件
下载SLEEKer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.
扩展基本信息
名称 | |
ID | nllobgeilpicophinmkbeaiekdcflkbo |
官方URL | https://chrome.google.com/webstore/detail/sleeker/nllobgeilpicophinmkbeaiekdcflkbo |
简介 | This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon. |
文件大小 | 136 KB |
安装次数 | 30 |
当前版本 | 1.0.1 |
更新时间 | 2019-11-04 |
上架时间 | 2019-11-04 |
开发者 | Rstudioworks |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://sleeker.pro |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SLEEKer", "description": "This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.", "version": "1.0.1", "icons": { "128": "images\/icon_128.png", "48": "images\/icon_48.png", "16": "images\/icon_16.png" }, "page_action": { "default_icon": "images\/icon_16.png", "default_popup": "popup.html", "default_title": "SLEEKer" }, "background": { "scripts": [ "scripts\/jquery-3.4.1.min.js", "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.amazon.ca\/*", "*:\/\/*.amazon.co.jp\/*", "*:\/\/*.amazon.co.uk\/*", "*:\/\/*.amazon.com.au\/*", "*:\/\/*.amazon.com\/*", "*:\/\/*.amazon.de\/*", "*:\/\/*.amazon.es\/*", "*:\/\/*.amazon.fr\/*", "*:\/\/*.amazon.in\/*", "*:\/\/*.amazon.it\/*" ], "js": [ "scripts\/jquery-3.4.1.min.js", "content.js" ] } ], "permissions": [ "activeTab", "storage", "tabs" ] } |