Remove Selection

This extension removes selected text.

What is Remove Selection?

Remove Selection is a Chrome extension developed by vncnt.liu, and its main feature is "This extension removes selected text.".

Extension Screenshots

screenshot

Download Remove Selection Extension CRX File

Download Remove Selection extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Remove Selection Remove Selection
ID mcfnbphdcohjpejiocghpcajmicbjink
Official URL https://chromewebstore.google.com/detail/remove-selection/mcfnbphdcohjpejiocghpcajmicbjink
Description This extension removes selected text.
File Size 10.02 KB
Installation Count 118
Current Version 2.0
Last Updated 2022-05-11
Publish Date 2017-08-09
Rating 4.67/5 Total 6 Ratings
Developer vncnt.liu
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}