SLEEKer
This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.
Что такое SLEEKer?
SLEEKer - это расширение Chrome, разработанное Rstudioworks, и его основная функция - "This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.".
Снимки экрана расширения
Скачать файл CRX расширения SLEEKer
Скачайте файлы расширений 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" ] } |