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 |
| Eメール | [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"
]
} | |