Webpage Auto Scrolldown
Automatically keeps you at the bottom of a page when clicked.
O que é Webpage Auto Scrolldown?
Webpage Auto Scrolldown é uma extensão do Chrome desenvolvida por CommanderCactus, e sua principal característica é "Automatically keeps you at the bottom of a page when clicked.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Webpage Auto Scrolldown
Baixe arquivos de extensão Webpage Auto Scrolldown 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
Literally scrolls to the bottom of the page. That's it. Click it once to activate it, click it again to deactivate. Probably a lot of bugs. Go forth and be productive, I guess.
Informações Básicas da Extensão
Nome | |
ID | aegbbdpcnbnddiipcggakoglcmlgejem |
URL Oficial | https://chrome.google.com/webstore/detail/webpage-auto-scrolldown/aegbbdpcnbnddiipcggakoglcmlgejem |
Descrição | Automatically keeps you at the bottom of a page when clicked. |
Tamanho do Arquivo | 14.53 KB |
Contagem de Instalações | 3,000 |
Versão Atual | 1.0 |
Última Atualização | 2016-03-13 |
Data de Publicação | 2016-03-13 |
Classificação | 4.15/5 Total de 20 Avaliações |
Desenvolvedor | CommanderCactus |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Webpage Auto Scrolldown", "description": "Automatically keeps you at the bottom of a page when clicked.", "version": "1.0", "short_name": "Auto Scroller", "icons": { "16": "ico16.png", "48": "ico48.png", "128": "ico128.png" }, "background": { "scripts": [ "bgcomm.js" ], "persistent": false }, "permissions": [ "tabs", "activeTab", "http:\/\/*\/*", "https:\/\/*\/*", "alarms" ], "browser_action": { "default_title": "KICK IT INTO OVERDRIIIIIIVE" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "autoscroll.js" ], "run_at": "document_end" } ] } |