Double-click to...

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

什麼是Double-click to...?

Double-click to...是由https://daniel.schmitz-huebsch.net開發的Chrome擴展程式,該擴展的主要功能是“Set different actions for a double-click on a webpage.”。

擴展截圖

screenshot

下載Double-click to...擴展crx文件

下載Double-click to...擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Double-click to... Double-click to...
ID dnlbjgbbmhedhlijenejbbcnhndkhdnn
官方網址 https://chromewebstore.google.com/detail/double-click-to/dnlbjgbbmhedhlijenejbbcnhndkhdnn
簡介 Set different actions for a double-click on a webpage.
檔案大小 12.29 KB
安裝次數 587
目前版本 0.7
更新時間 2015-10-13
上架時間 2015-10-13
評分 3.29/5 共 7 次評分
開發者 https://daniel.schmitz-huebsch.net
付費類型 free
支援的語言 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
    }
}