Custom Highlight

A chrome extension for customizing highlight color.

Τι είναι το Custom Highlight;

Το Custom Highlight είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Andreto, και η κύρια λειτουργία του είναι "A chrome extension for customizing highlight color.".

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

screenshot
screenshot
screenshot

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

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

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

                        Change Highlight background and text-color. It's easy to set the color with the built-in color picker or by copy and pasting color hex codes.

Works on pretty much all websites, including Google Docs.

Compatible with Dark Reader.
--
This extension does not read or handle any user data.
https://andreto.github.io/Custom-Highlight/                    

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

Όνομα Custom Highlight Custom Highlight
ID bmhaflbnleckffaacepbbbonfookcedm
Επίσημο URL https://chromewebstore.google.com/detail/custom-highlight/bmhaflbnleckffaacepbbbonfookcedm
Περιγραφή A chrome extension for customizing highlight color.
Μέγεθος Αρχείου 56.93 KB
Αριθμός Εγκαταστάσεων 7,000
Τρέχουσα Έκδοση 1.5.0
Τελευταία Ενημέρωση 2021-05-24
Ημερομηνία Δημοσίευσης 2020-02-19
Αξιολόγηση 3.85/5 Συνολικά 20 Αξιολογήσεις
Προγραμματιστής Andreto
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://andreto.github.io/Custom-Highlight
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/Andreto/Custom-Highlight
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Highlight",
    "description": "A chrome extension for customizing highlight color.",
    "version": "1.5.0",
    "author": "Andreto",
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}