uSuperDrag

Drag selected text to search for and link to open in a new tab

什麼是uSuperDrag?

uSuperDrag是由iorate開發的Chrome擴展程式,該擴展的主要功能是“Drag selected text to search for and link to open in a new tab”。

擴展截圖

screenshot

下載uSuperDrag擴展crx文件

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

擴展使用說明

                        This Chrome extension provides "Super Drag" for selected text and link. If you drag-and-drop selected text or link, it will be searched for by the specified search engine (default: Google) or opened in a new tab, respectively.

In addition, this extension enables us to drag link text horizontally and select it, just like Presto Opera.                    

擴展基本資訊

名稱 uSuperDrag uSuperDrag
ID liikkibjjbncmbpjebipicodoegpcael
官方網址 https://chromewebstore.google.com/detail/usuperdrag/liikkibjjbncmbpjebipicodoegpcael
簡介 Drag selected text to search for and link to open in a new tab
檔案大小 18.29 KB
安裝次數 1,260
目前版本 1.2.7
更新時間 2022-05-07
上架時間 2018-06-30
評分 4.09/5 共 11 次評分
開發者 iorate
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/iorate/uSuperDrag
隱私政策頁面URL https://iorate.github.io/ublacklist/privacy-policy
支援的語言 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.2.7",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "eventpage.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html"
    }
}