Selection Highlighter

Automatically highlight all occurrences of current selection on current page.

Selection Highlighter क्या है?

Selection Highlighter Tao द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically highlight all occurrences of current selection on current page."।

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

screenshot
screenshot
screenshot

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

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

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

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