Remove Selection

This extension removes selected text.

Co je Remove Selection?

Remove Selection je rozšíření Chrome vyvinuté vncnt.liu, a jeho hlavní funkcí je „This extension removes selected text.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Remove Selection

Stáhněte si soubory rozšíření Remove Selection ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Remove Selection Remove Selection
ID mcfnbphdcohjpejiocghpcajmicbjink
Oficiální URL https://chromewebstore.google.com/detail/remove-selection/mcfnbphdcohjpejiocghpcajmicbjink
Popis This extension removes selected text.
Velikost souboru 10.02 KB
Počet instalací 118
Aktuální Verze 2.0
Poslední Aktualizace 2022-05-11
Datum Vydání 2017-08-09
Hodnocení 4.67/5 Celkem 6 Hodnocení
Vývojář vncnt.liu
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}