hamsterGestures

A simple mouse gestures extension

Vad är hamsterGestures?

hamsterGestures är en Chrome-tillägg utvecklad av killhamster, och dess huvudfunktion är "A simple mouse gestures extension".

Tilläggsskärmbilder

screenshot

Ladda ner hamsterGestures-förlängningens CRX-fil

Ladda ner hamsterGestures-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Adds a few simple mouse gestures to Chrome, similar to the gestures found in the old Opera browser. Allows for rocker gestures (quickly pressing LR or RL) along with opening links in new tabs and forward/back functions.                    

Grundläggande Information om Tillägg

Namn hamsterGestures hamsterGestures
ID onhffgjaaedecbofdpifakjfgkkalhde
Officiell webbadress https://chromewebstore.google.com/detail/hamstergestures/onhffgjaaedecbofdpifakjfgkkalhde
Beskrivning A simple mouse gestures extension
Filstorlek 24.21 KB
Antal Installationer 20
Aktuell Version 1.0.1
Senast Uppdaterad 2021-04-20
Publiceringsdatum 2021-04-19
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare killhamster
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "hamsterGestures",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icon128.png",
        "icons": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "options.html",
        "default_title": "hamsterGestures"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "mouseTrack.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "version": "1.0.1",
    "description": "A simple mouse gestures extension"
}