Remove Selection

This extension removes selected text.

Qu'est-ce que Remove Selection ?

Remove Selection est une extension Chrome développée par vncnt.liu, et sa fonction principale est "This extension removes selected text.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Remove Selection

Téléchargez les fichiers d'extension Remove Selection au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Remove Selection Remove Selection
ID mcfnbphdcohjpejiocghpcajmicbjink
URL Officiel https://chromewebstore.google.com/detail/remove-selection/mcfnbphdcohjpejiocghpcajmicbjink
Description This extension removes selected text.
Taille du Fichier 10.02 KB
Nombre d'Installations 118
Version Actuelle 2.0
Dernière Mise à Jour 2022-05-11
Date de Publication 2017-08-09
Évaluation 4.67/5 Total 6 Évaluations
Développeur vncnt.liu
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}