Autoscroll

Use Ctrl+Up/Down arrows to make pages scroll continously.

Vad är Autoscroll?

Autoscroll är en Chrome-tillägg utvecklad av https://mrogalski.eu, och dess huvudfunktion är "Use Ctrl+Up/Down arrows to make pages scroll continously.".

Tilläggsskärmbilder

screenshot

Ladda ner Autoscroll-förlängningens CRX-fil

Ladda ner Autoscroll-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Scroller is an extension that automatically scrolls webpages. Use Ctrl + arrows to adjust scrolling speed or set default values using icon on the top bar.                    

Grundläggande Information om Tillägg

Namn Autoscroll Autoscroll
ID cokfegjeoaflhjkloplfpjgnmlhbfkhp
Officiell webbadress https://chromewebstore.google.com/detail/autoscroll/cokfegjeoaflhjkloplfpjgnmlhbfkhp
Beskrivning Use Ctrl+Up/Down arrows to make pages scroll continously.
Filstorlek 22.91 KB
Antal Installationer 2,108
Aktuell Version 1.2
Senast Uppdaterad 2013-04-27
Publiceringsdatum 2013-04-27
Betyg 3.64/5 Totalt 33 Betyg
Utvecklare https://mrogalski.eu
Betalningssätt free
Tilläggswebbplats http://mrogalski.eu/
Stödda Språk en
manifest.json
{
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_popup": "popup.html",
        "default_title": "Use Ctrl+Up\/Down arrows to make pages scroll continously."
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Use Ctrl+Up\/Down arrows to make pages scroll continously.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "name": "Autoscroll",
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scroller.js"
            ]
        }
    ],
    "manifest_version": 2,
    "version": "1.2"
}