Double-click to...

Set different actions for a double-click on a webpage.

Cos'è Double-click to...?

Double-click to... è un'estensione di Chrome sviluppata da https://daniel.schmitz-huebsch.net, e la sua funzione principale è "Set different actions for a double-click on a webpage.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Double-click to...

Scarica i file di estensione Double-click to... in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Invented because a simple mouse click already existed, you can now use the double-click in the browser.

Use the double-click to:
- move to the top of the page.
- close the current tab.
- open a new tab.

Do you have an idea of what can happen when you double-click? Contact me via the support form.                    

Informazioni di Base sull'Estensione

Nome Double-click to... Double-click to...
ID dnlbjgbbmhedhlijenejbbcnhndkhdnn
URL Ufficiale https://chromewebstore.google.com/detail/double-click-to/dnlbjgbbmhedhlijenejbbcnhndkhdnn
Descrizione Set different actions for a double-click on a webpage.
Dimensione del File 12.29 KB
Conteggio Installazioni 587
Versione Corrente 0.7
Ultimo Aggiornamento 2015-10-13
Data di Pubblicazione 2015-10-13
Valutazione 3.29/5 Totale 7 Valutazioni
Sviluppatore https://daniel.schmitz-huebsch.net
Tipo di Pagamento free
Lingue Supportate de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_chrome_extension_name__",
    "version": "0.7",
    "short_name": "__MSG_chrome_extension_shortname__",
    "author": "Daniel Schmitz-H\u00fcbsch",
    "default_locale": "en",
    "description": "__MSG_chrome_extension_description__",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentscript.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}