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
Eメール [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"
}