AutoScrolling

Auto-scrolling without mouse-wheel

Was ist AutoScrolling?

AutoScrolling ist eine Chrome-Erweiterung, die von pinkienort entwickelt wurde, und ihr Hauptmerkmal ist "Auto-scrolling without mouse-wheel".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

AutoScrolling-Erweiterungs-CRX-Datei herunterladen

Laden Sie AutoScrolling-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

                        This plugin enables you auto-scrolling without using mouse wheel. When you click the icon on the toolbar, the auto-scrolling is started. If you want to stop, then click the icon again. And the scrolling is also stopped when you switch the active tab in the active window.

The plugin helps you for such situation, that you are doing some task or games with watching the web sites like Twitter or Tumblr.

If you find some bugs or request some features, please sends me mails or create issues in the homepage of this plugin.

Thank you for users.                    

Grundlegende Informationen zur Erweiterung

Name AutoScrolling AutoScrolling
ID maibgninmecbokncboknddpeaedfioea
Offizielle URL https://chromewebstore.google.com/detail/autoscrolling/maibgninmecbokncboknddpeaedfioea
Beschreibung Auto-scrolling without mouse-wheel
Dateigröße 233 KB
Installationsanzahl 1,046
Aktuelle Version 1.0.0
Letztes Update 2019-03-26
Veröffentlichungsdatum 2019-03-25
Bewertung 2.67/5 Insgesamt 3 Bewertungen
Entwickler pinkienort
Zahlungsart free
Erweiterungswebsite https://github.com/pinkienort/AutoScrolling
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoScrolling",
    "version": "1.0.0",
    "author": "pinkienort",
    "homepage_url": "https:\/\/github.com\/pinkienort\/AutoScrolling",
    "description": "Auto-scrolling without mouse-wheel",
    "permissions": [
        "storage",
        "tabs",
        "contextMenus"
    ],
    "options_ui": {
        "page": "dist\/options.html"
    },
    "icons": {
        "48": "icons\/mouse-48.png",
        "96": "icons\/mouse-96.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/mouse-16.png",
            "32": "icons\/mouse-32.png",
            "48": "icons\/mouse-48.png"
        },
        "default_title": "Enable\/Disable auto scroll"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content.js"
            ],
            "css": [
                "dist\/style.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "commands": {
        "single-click-action": {
            "suggested_key": {
                "default": "Alt+Shift+PageDown"
            },
            "description": "Fire a single click on browser icon"
        }
    }
}