Selection Highlighter

Automatically highlight all occurrences of current selection on current page.

Τι είναι το Selection Highlighter;

Το Selection Highlighter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tao, και η κύρια λειτουργία του είναι "Automatically highlight all occurrences of current selection on current page.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Selection Highlighter

Λήψη αρχείων επέκτασης Selection Highlighter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Selection Highlighter Selection Highlighter
ID maafgdeicpceceblgclafehagjndfjig
Επίσημο URL https://chromewebstore.google.com/detail/selection-highlighter/maafgdeicpceceblgclafehagjndfjig
Περιγραφή Automatically highlight all occurrences of current selection on current page.
Μέγεθος Αρχείου 96.84 KB
Αριθμός Εγκαταστάσεων 112
Τρέχουσα Έκδοση 0.0.3
Τελευταία Ενημέρωση 2020-07-17
Ημερομηνία Δημοσίευσης 2020-06-03
Αξιολόγηση 3.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Tao
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/taoalpha/selection-highlighter
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/taoalpha/selection-highlighter
Υποστηριζόμενες Γλώσσες 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"
    ]
}