Selection Highlighter

Automatically highlight all occurrences of current selection on current page.

Wat is Selection Highlighter?

Selection Highlighter is een Chrome-extensie ontwikkeld door Tao, en de belangrijkste functie is "Automatically highlight all occurrences of current selection on current page.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Selection Highlighter

Download Selection Highlighter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Selection Highlighter Selection Highlighter
ID maafgdeicpceceblgclafehagjndfjig
Officiële URL https://chromewebstore.google.com/detail/selection-highlighter/maafgdeicpceceblgclafehagjndfjig
Beschrijving Automatically highlight all occurrences of current selection on current page.
Bestandsgrootte 96.84 KB
Aantal Installaties 112
Huidige Versie 0.0.3
Laatst Bijgewerkt 2020-07-17
Publicatiedatum 2020-06-03
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Tao
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/taoalpha/selection-highlighter
Help Pagina-URL https://github.com/taoalpha/selection-highlighter
Ondersteunde Talen 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"
    ]
}