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
官方網址 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
電子郵箱 [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"
    ]
}