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
官方URL 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"
    }
}