Simple Auto Scroll

Simple speed-customizable auto scroll

Qu'est-ce que Simple Auto Scroll ?

Simple Auto Scroll est une extension Chrome développée par xjpablobrx, et sa fonction principale est "Simple speed-customizable auto scroll".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Simple Auto Scroll

Téléchargez les fichiers d'extension Simple Auto Scroll 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

                        1. What is it?

A speed-customizable auto-scroll Google Chrome extension.

2. Why?

A lot of times I find myself reading long texfiles, and after a while, I kind of wish I could just read them as if they were a movie. I've tried with the mouse (middle click) thingy, but it's just not practical and adjusting the speed is very tricky - not to mention that a lot of times it's just too fast.

3. Features

This extension allows you to easily change the auto-scroll speed and save it in three different modes; slow, medium and fast. A single click will stop the auto-scrolling.

Note: Does not work in Google related websites.                    

Informations de Base sur l'Extension

Nom Simple Auto Scroll Simple Auto Scroll
ID dccjkemhmffnljlnnoffljpkhkfpldff
URL Officiel https://chrome.google.com/webstore/detail/simple-auto-scroll/dccjkemhmffnljlnnoffljpkhkfpldff
Description Simple speed-customizable auto scroll
Taille du Fichier 12.31 KB
Nombre d'Installations 40,000
Version Actuelle 0.1.4
Dernière Mise à Jour 2018-12-17
Date de Publication 2018-12-17
Évaluation 4.04/5 Total 214 Évaluations
Développeur xjpablobrx
Type de Paiement free
Site Web de l'Extension https://github.com/jpablobr/simple-auto-scroll
Langues Prises en Charge en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Auto Scroll",
    "version": "0.1.4",
    "description": "Simple speed-customizable auto scroll",
    "icons": {
        "48": "icons\/autoscroll.png",
        "128": "icons\/autoscroll.png"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_title": "",
        "default_icon": "icons\/autoscroll.png"
    },
    "permissions": [
        "*:\/\/*\/*",
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/simple_autoscroll.js"
            ],
            "run_at": "document_start"
        }
    ]
}