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