Webpage Auto Scrolldown
Automatically keeps you at the bottom of a page when clicked.
Was ist Webpage Auto Scrolldown?
Webpage Auto Scrolldown ist eine Chrome-Erweiterung, die von CommanderCactus entwickelt wurde, und ihr Hauptmerkmal ist "Automatically keeps you at the bottom of a page when clicked.".
Erweiterungsscreenshots
Webpage Auto Scrolldown-Erweiterungs-CRX-Datei herunterladen
Laden Sie Webpage Auto Scrolldown-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | aegbbdpcnbnddiipcggakoglcmlgejem |
Offizielle URL | https://chrome.google.com/webstore/detail/webpage-auto-scrolldown/aegbbdpcnbnddiipcggakoglcmlgejem |
Beschreibung | Automatically keeps you at the bottom of a page when clicked. |
Dateigröße | 14.53 KB |
Installationsanzahl | 3,000 |
Aktuelle Version | 1.0 |
Letztes Update | 2016-03-13 |
Veröffentlichungsdatum | 2016-03-13 |
Bewertung | 4.15/5 Insgesamt 20 Bewertungen |
Entwickler | CommanderCactus |
Zahlungsart | free |
Unterstützte Sprachen | 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" } ] } |