Simple smooth scrolling

Based on crxmouse, only smooth scrolling, and no background process.

Was ist Simple smooth scrolling?

Simple smooth scrolling ist eine Chrome-Erweiterung, die von ipcws entwickelt wurde, und ihr Hauptmerkmal ist "Based on crxmouse, only smooth scrolling, and no background process.".

Simple smooth scrolling-Erweiterungs-CRX-Datei herunterladen

Laden Sie Simple smooth scrolling-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

                        A simple smooth scrolling extension. based on gestures for chrome(TM)(also crxmouse).Only smooth scrolling, no others, no background process.                    

Grundlegende Informationen zur Erweiterung

Name Simple smooth scrolling Simple smooth scrolling
ID nkkgebahigkpgmekmljodlelcknmofnh
Offizielle URL https://chrome.google.com/webstore/detail/simple-smooth-scrolling/nkkgebahigkpgmekmljodlelcknmofnh
Beschreibung Based on crxmouse, only smooth scrolling, and no background process.
Dateigröße 24.85 KB
Installationsanzahl 1,000
Aktuelle Version 3.0
Letztes Update 2015-06-20
Veröffentlichungsdatum 2015-06-20
Bewertung 3.78/5 Insgesamt 36 Bewertungen
Entwickler ipcws
Zahlungsart free
Unterstützte Sprachen en,zh-CN
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "3.0",
    "name": "__MSG_ext_name__",
    "description": "__MSG_ext_des__",
    "default_locale": "en",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "js\/scroll.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "html\/options.html",
        "chrome_style": true
    },
    "options_page": "html\/options.html",
    "permissions": [
        "",
        "tabs",
        "storage"
    ]
}