SLEEKer
This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.
Co to jest SLEEKer?
SLEEKer to rozszerzenie Chrome opracowane przez Rstudioworks, a jego główną funkcją jest „This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia SLEEKer
Pobierz pliki rozszerzeń SLEEKer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | nllobgeilpicophinmkbeaiekdcflkbo |
Oficjalny URL | https://chrome.google.com/webstore/detail/sleeker/nllobgeilpicophinmkbeaiekdcflkbo |
Opis | This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon. |
Rozmiar pliku | 136 KB |
Liczba instalacji | 30 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2019-11-04 |
Data Publikacji | 2019-11-04 |
Deweloper | Rstudioworks |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://sleeker.pro |
Obsługiwane Języki | 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" ] } |