SLEEKer
This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.
Vad är SLEEKer?
SLEEKer är en Chrome-tillägg utvecklad av Rstudioworks, och dess huvudfunktion är "This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.".
Tilläggsskärmbilder
Ladda ner SLEEKer-förlängningens CRX-fil
Ladda ner SLEEKer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.
Grundläggande Information om Tillägg
Namn | |
ID | nllobgeilpicophinmkbeaiekdcflkbo |
Officiell webbadress | https://chrome.google.com/webstore/detail/sleeker/nllobgeilpicophinmkbeaiekdcflkbo |
Beskrivning | This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon. |
Filstorlek | 136 KB |
Antal Installationer | 30 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2019-11-04 |
Publiceringsdatum | 2019-11-04 |
Utvecklare | Rstudioworks |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://sleeker.pro |
Stödda Språk | 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" ] } |