Hiliter

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

Hiliter क्या है?

Hiliter https://hiliter.co द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Instantly see where your keywords and links are on every webpage."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Hiliter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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": []
        }
    ]
}