Selection Highlighter

Automatically highlight all occurrences of current selection on current page.

Qu'est-ce que Selection Highlighter ?

Selection Highlighter est une extension Chrome développée par Tao, et sa fonction principale est "Automatically highlight all occurrences of current selection on current page.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

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

Téléchargez les fichiers d'extension Selection Highlighter 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

                        Selection highlighter will help you automatically highlight all occurrences of current selection on current page, also works for shadow DOM pages.
The extension also allow you to toggle on/off the feature from options page, also change the default configurations like highlight color etc

Release notes:

v0.0.3:
- Allow config the threshold to ignore selection when apply highlighting
- Always ignore `style` tag when highlighting, avoid messing up the page                    

Informations de Base sur l'Extension

Nom Selection Highlighter Selection Highlighter
ID maafgdeicpceceblgclafehagjndfjig
URL Officiel https://chromewebstore.google.com/detail/selection-highlighter/maafgdeicpceceblgclafehagjndfjig
Description Automatically highlight all occurrences of current selection on current page.
Taille du Fichier 96.84 KB
Nombre d'Installations 112
Version Actuelle 0.0.3
Dernière Mise à Jour 2020-07-17
Date de Publication 2020-06-03
Évaluation 3.00/5 Total 2 Évaluations
Développeur Tao
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/taoalpha/selection-highlighter
URL de la Page d'Aide https://github.com/taoalpha/selection-highlighter
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Selection Highlighter",
    "description": "Automatically highlight all occurrences of current selection on current page.",
    "version": "0.0.3",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Selection Highlighter"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ]
        }
    ],
    "content_security_policy": "default-src 'none'; script-src 'self'; style-src 'unsafe-inline'; connect-src https:\/\/*",
    "permissions": [
        "activeTab",
        "",
        "storage",
        "tabs"
    ]
}