Selection Popup

Perform customizable actions (Search, Copy etc) on selected text.

什么是Selection Popup?

Selection Popup是由mubaidr开发的Chrome扩展程序,该扩展的主要功能是“Perform customizable actions (Search, Copy etc) on selected text.”。

扩展截图

screenshot
screenshot

下载Selection Popup扩展crx文件

下载Selection Popup扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Use commands (Copy or Go to Web address) on selected text or search the selected text using configurable search engines. 

You can manage search engines in options, their order of appearance, names etc

Enable or disable available commands in the options. 

Or even use your styles using CSS to customize the look of popup.                    

扩展基本信息

名称 Selection Popup Selection Popup
ID ahecgidbcpeicikbcpaljaocofecilpd
官方URL https://chrome.google.com/webstore/detail/selection-popup/ahecgidbcpeicikbcpaljaocofecilpd
简介 Perform customizable actions (Search, Copy etc) on selected text.
文件大小 62.59 KB
安装次数 1,000
当前版本 1.9.7
更新时间 2020-02-11
上架时间 2020-02-11
评分 4.56/5 共45次评分
开发者 mubaidr
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/mubaidr/selection-popup/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                ".\/contentScript.css"
            ],
            "js": [
                ".\/contentScript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "description": "Perform customizable actions (Search, Copy etc) on selected text.",
    "icons": {
        "16": "assets\/icons\/icon_48.png",
        "128": "assets\/icons\/icon_128.png"
    },
    "manifest_version": 2,
    "name": "Selection Popup",
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "tabs"
    ],
    "version": "1.9.7"
}