Remove Selection

This extension removes selected text.

Was ist Remove Selection?

Remove Selection ist eine Chrome-Erweiterung, die von vncnt.liu entwickelt wurde, und ihr Hauptmerkmal ist "This extension removes selected text.".

Erweiterungsscreenshots

screenshot

Remove Selection-Erweiterungs-CRX-Datei herunterladen

Laden Sie Remove Selection-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Remove Selection Remove Selection
ID mcfnbphdcohjpejiocghpcajmicbjink
Offizielle URL https://chromewebstore.google.com/detail/remove-selection/mcfnbphdcohjpejiocghpcajmicbjink
Beschreibung This extension removes selected text.
Dateigröße 10.02 KB
Installationsanzahl 118
Aktuelle Version 2.0
Letztes Update 2022-05-11
Veröffentlichungsdatum 2017-08-09
Bewertung 4.67/5 Insgesamt 6 Bewertungen
Entwickler vncnt.liu
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}