Remove Selection

This extension removes selected text.

Remove Selectionとは何ですか?

Remove Selectionはvncnt.liuによって開発されたChromeの拡張機能で、その主な機能は「This extension removes selected text.」です。

拡張機能のスクリーンショット

screenshot

Remove Selection拡張機能のCRXファイルをダウンロード

Remove Selection拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        After selecting some text, you can click the icon on the browser Toolbar, or choose 'Remove Selection' in the right-click Menu. I wrote it because it was one of the feature in FastestFox for Firefox and I love it, but did not find a good alternative in Chrome.                    

拡張機能の基本情報

名前 Remove Selection Remove Selection
ID mcfnbphdcohjpejiocghpcajmicbjink
公式URL https://chromewebstore.google.com/detail/remove-selection/mcfnbphdcohjpejiocghpcajmicbjink
説明 This extension removes selected text.
ファイルサイズ 10.02 KB
インストール数 118
現在のバージョン 2.0
最終更新日 2022-05-11
公開日 2017-08-09
評価 4.67/5 合計 6 レビュー
開発者 vncnt.liu
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Remove Selection",
    "description": "This extension removes selected text.",
    "version": "2.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_title": "Remove Selection",
        "default_icon": "images\/icon16.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus"
    ]
}