SLEEKer
This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.
O que é SLEEKer?
SLEEKer é uma extensão do Chrome desenvolvida por Rstudioworks, e sua principal característica é "This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão SLEEKer
Baixe arquivos de extensão SLEEKer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon.
Informações Básicas da Extensão
Nome | |
ID | nllobgeilpicophinmkbeaiekdcflkbo |
URL Oficial | https://chrome.google.com/webstore/detail/sleeker/nllobgeilpicophinmkbeaiekdcflkbo |
Descrição | This extension allows the user quickly calculate the average Best Seller Rank of Kindle ebooks on Amazon. |
Tamanho do Arquivo | 136 KB |
Contagem de Instalações | 30 |
Versão Atual | 1.0.1 |
Última Atualização | 2019-11-04 |
Data de Publicação | 2019-11-04 |
Desenvolvedor | Rstudioworks |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://sleeker.pro |
Idiomas Suportados | 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" ] } |