Webpage Auto Scrolldown
Automatically keeps you at the bottom of a page when clicked.
Cos'è Webpage Auto Scrolldown?
Webpage Auto Scrolldown è un'estensione di Chrome sviluppata da CommanderCactus, e la sua funzione principale è "Automatically keeps you at the bottom of a page when clicked.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Webpage Auto Scrolldown
Scarica i file di estensione Webpage Auto Scrolldown 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
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.
Informazioni di Base sull'Estensione
Nome | |
ID | aegbbdpcnbnddiipcggakoglcmlgejem |
URL Ufficiale | https://chrome.google.com/webstore/detail/webpage-auto-scrolldown/aegbbdpcnbnddiipcggakoglcmlgejem |
Descrizione | Automatically keeps you at the bottom of a page when clicked. |
Dimensione del File | 14.53 KB |
Conteggio Installazioni | 3,000 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2016-03-13 |
Data di Pubblicazione | 2016-03-13 |
Valutazione | 4.15/5 Totale 20 Valutazioni |
Sviluppatore | CommanderCactus |
Tipo di Pagamento | free |
Lingue Supportate | 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" } ] } |