Hiliter

Instantly see where your keywords and links are on every webpage.

Τι είναι το Hiliter;

Το Hiliter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://hiliter.co, και η κύρια λειτουργία του είναι "Instantly see where your keywords and links are on every webpage.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        You will be able to find your links and keywords easily now.  Find where your name or brand is mentioned on a webpage or social media feed.  Also easily find any links to URLs that you specify are on the webpage as well.

You can blacklist domains the highlighting is paused when on those sites.  This is helpful if you're trying to highlight brand names, but want to ignore the highlighting when on the brand's own site (which would probably highlight everything).                    

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

Όνομα Hiliter Hiliter
ID jgjjlicojciehdiompgpeeogkaccjcnc
Επίσημο URL https://chromewebstore.google.com/detail/hiliter/jgjjlicojciehdiompgpeeogkaccjcnc
Περιγραφή Instantly see where your keywords and links are on every webpage.
Μέγεθος Αρχείου 76.53 KB
Αριθμός Εγκαταστάσεων 69
Τρέχουσα Έκδοση 1.0.0.11
Τελευταία Ενημέρωση 2023-06-28
Ημερομηνία Δημοσίευσης 2022-12-13
Αξιολόγηση 4.56/5 Συνολικά 9 Αξιολογήσεις
Προγραμματιστής https://hiliter.co
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://hiliter.co
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hiliter",
    "description": "Instantly see where your keywords and links are on every webpage.",
    "version": "1.0.0.11",
    "manifest_version": 3,
    "icons": {
        "128": "\/img\/logo.png"
    },
    "action": {
        "default_popup": "\/pages\/popup\/index.html",
        "default_icons": {
            "16": "\/img\/logo_grey.png"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": false,
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/link-hiliter.web.app\/",
                "http:\/\/localhost\/*"
            ],
            "js": [
                "\/js\/content.js"
            ],
            "css": [
                "\/css\/content.css"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "\/js\/app_content.js"
            ],
            "matches": [
                "http:\/\/localhost\/*",
                "https:\/\/link-hiliter.web.app\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "https:\/\/*\/*"
            ],
            "extension_ids": []
        }
    ]
}