SLEEKer
This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.
Cos'è SLEEKer?
SLEEKer è un'estensione di Chrome sviluppata da Rstudioworks, e la sua funzione principale è "This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SLEEKer
Scarica i file di estensione SLEEKer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.
Informazioni di Base sull'Estensione
Nome | |
ID | nllobgeilpicophinmkbeaiekdcflkbo |
URL Ufficiale | https://chrome.google.com/webstore/detail/sleeker/nllobgeilpicophinmkbeaiekdcflkbo |
Descrizione | This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon. |
Dimensione del File | 136 KB |
Conteggio Installazioni | 30 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2019-11-04 |
Data di Pubblicazione | 2019-11-04 |
Sviluppatore | Rstudioworks |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://sleeker.pro |
Lingue Supportate | 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" ] } |