Remove Selection

This extension removes selected text.

Vad är Remove Selection?

Remove Selection är en Chrome-tillägg utvecklad av vncnt.liu, och dess huvudfunktion är "This extension removes selected text.".

Tilläggsskärmbilder

screenshot

Ladda ner Remove Selection-förlängningens CRX-fil

Ladda ner Remove Selection-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Remove Selection Remove Selection
ID mcfnbphdcohjpejiocghpcajmicbjink
Officiell webbadress https://chromewebstore.google.com/detail/remove-selection/mcfnbphdcohjpejiocghpcajmicbjink
Beskrivning This extension removes selected text.
Filstorlek 10.02 KB
Antal Installationer 118
Aktuell Version 2.0
Senast Uppdaterad 2022-05-11
Publiceringsdatum 2017-08-09
Betyg 4.67/5 Totalt 6 Betyg
Utvecklare vncnt.liu
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}