AutoScroll

This extension adds customizable autoscroll support to Chrome.

Qu'est-ce que AutoScroll ?

AutoScroll est une extension Chrome développée par https://kaescripts.blogspot.com, et sa fonction principale est "This extension adds customizable autoscroll support to Chrome.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension AutoScroll

Téléchargez les fichiers d'extension AutoScroll au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        For users on Linux or Mac, the lack of autoscroll can be a big pain. This extension can help!

It supports both sticky and non-sticky scrolling, doesn't scroll on textareas or links, and even has settings to customize various aspects such as scroll speed.

To use it, press (or hold) the middle mouse button, then move the mouse to scroll the page. Alternatively, hold Ctrl/⌘ and press the left mouse button.

It won't work on every page, but it should work on most.


Known bugs:

● You need to refresh the site or restart Chrome before it'll work. You only need to do this once.

● Doesn't work on chrome:// URLs or the Chrome Web Store. It's restricted by Chrome for security reasons.


Changelog:
http://paaru.pbworks.com/f/AutoScroll%20Changelog.html

GitHub:
https://github.com/Pauan/AutoScroll                    

Informations de Base sur l'Extension

Nom AutoScroll AutoScroll
ID occjjkgifpmdgodlplnacmkejpdionan
URL Officiel https://chromewebstore.google.com/detail/autoscroll/occjjkgifpmdgodlplnacmkejpdionan
Description This extension adds customizable autoscroll support to Chrome.
Taille du Fichier 51.7 KB
Nombre d'Installations 117,828
Version Actuelle 4.10
Dernière Mise à Jour 2018-11-21
Date de Publication 2018-11-21
Évaluation 4.21/5 Total 638 Évaluations
Développeur https://kaescripts.blogspot.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Pauan/AutoScroll
URL de la Page d'Aide https://github.com/Pauan/AutoScroll/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoScroll",
    "version": "4.10",
    "description": "This extension adds customizable autoscroll support to Chrome.",
    "minimum_chrome_version": "29",
    "icons": {
        "128": "data\/images\/icons\/icon128.png",
        "16": "data\/images\/icons\/icon16.png",
        "32": "data\/images\/icons\/icon32.png",
        "48": "data\/images\/icons\/icon48.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    },
    "options_page": "data\/options.html",
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "data\/defaults.js",
                "data\/AutoScroll.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "data\/images\/origin\/*.svg"
    ]
}