Auto Scroll

Automatically scroll down on your current web page

Qu'est-ce que Auto Scroll ?

Auto Scroll est une extension Chrome développée par PracticalApplications, et sa fonction principale est "Automatically scroll down on your current web page".

Captures d'Écran de l'Extension

screenshot
screenshot

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

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

                        This chrome extension allows you to automatically scroll down the page with a click of a button.

This chrome extension is perfect for reading any web page of your choice.                    

Informations de Base sur l'Extension

Nom Auto Scroll Auto Scroll
ID pnmppanpmcimcfnkhkcpnmomiiomchpd
URL Officiel https://chrome.google.com/webstore/detail/auto-scroll/pnmppanpmcimcfnkhkcpnmomiiomchpd
Description Automatically scroll down on your current web page
Taille du Fichier 44.83 KB
Nombre d'Installations 460
Version Actuelle 1.0
Dernière Mise à Jour 2018-02-20
Date de Publication 2018-02-20
Évaluation 3.75/5 Total 4 Évaluations
Développeur PracticalApplications
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Scroll",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Automatically scroll down on your current web page",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "editor.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "editor.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}