SelfScroll
This extension allow to automatically scroll the page. Suitable for monitors and kiosks.
O que é SelfScroll?
SelfScroll é uma extensão do Chrome desenvolvida por https://zerobug.it, e sua principal característica é "This extension allow to automatically scroll the page. Suitable for monitors and kiosks.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão SelfScroll
Baixe arquivos de extensão SelfScroll 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 allow to automatically scroll the page. Suitable for monitors and kiosks. Buy me a coffe :D Litecoin: MC8PtUhSL2iJCx5GWrisPZPpgiFE56ejyc Paypal: https://www.paypal.me/ZeroBug
Informações Básicas da Extensão
Nome | SelfScroll |
ID | lofkbkbhpmeihoaogggfbhmjdekjihlf |
URL Oficial | https://chromewebstore.google.com/detail/selfscroll/lofkbkbhpmeihoaogggfbhmjdekjihlf |
Descrição | This extension allow to automatically scroll the page. Suitable for monitors and kiosks. |
Tamanho do Arquivo | 132 KB |
Contagem de Instalações | 1,476 |
Versão Atual | 1.4 |
Última Atualização | 2018-11-13 |
Data de Publicação | 2018-11-13 |
Classificação | 4.40/5 Total de 5 Avaliações |
Desenvolvedor | https://zerobug.it |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://zerobug.it/ |
Idiomas Suportados | en,it |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SelfScroll", "version": "1.4", "description": "This extension allow to automatically scroll the page. Suitable for monitors and kiosks.", "default_locale": "en", "icons": { "16": ".\/icons\/selfscroll_16.png", "48": ".\/icons\/selfscroll_48.png", "128": ".\/icons\/selfscroll_128.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "selfscroll_script.js" ] } ], "options_ui": { "page": "selfscroll_options.html", "chrome_style": true }, "background": { "scripts": [ "selfscroll_background.js" ], "persistent": false }, "browser_action": { "default_icon": ".\/icons\/selfscroll.png", "default_title": "SelfScroll" }, "manifest_version": 2 } |