Auto Highlight

Auto Highlight is text highlighter with RegExp support

Auto Highlight क्या है?

Auto Highlight https://fastaddons.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Auto Highlight is text highlighter with RegExp support"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        🟨 Auto Highlight a fully automatic and easy to use text marker / highlighter / style fixer with RegExp support (regular expression). 
No need to use search anymore to find important information, it will be marked when page loads!

⭐ TOP FEATURES:
- automatic synchronization to all your devices (using native Chrome Sync.)
- highlight metadata like: 1080p, HDR, 4K, x265, HEVC, 5.1
- change style - background, text size and color of all marked words
- advanced search options using regular expressions (regexp), exact match, ignore diacritics and more
- highlight "Free shipping", "Out of stock" and other important labels
- make annoying text disappear by making it transparent or set the font size to zero
- doing research about specific topic? Use "Temporal highlight" feature to highlight keywords on every page.

❤ About author - Juraj Mäsiar:
 https://blog.mozilla.org/addons/2020/06/15/Friend-Of-Add-ons-Juraj-Masiar/

☕ I'm extension developer since 2016 and my goal is to build powerful extensions for your web-browser to make you more productive.
If you think I'm doing a good job, please donate :)
- Ko-Fi.com: https://ko-fi.com/fastaddons
- PayPal.Me: https://paypal.me/fastaddons/
- Patreon.com: https://www.patreon.com/fastaddons
💥 Thank you for supporting my work!

🔒 Privacy Policy:
https://github.com/fastaddons/AutoHighlight/blob/master/PRIVACY_POLICY.md

🕑 Recently added features:
https://addons.mozilla.org/addon/auto_highlight/versions/                    

एक्सटेंशन की मूल जानकारी

नाम Auto Highlight Auto Highlight
ID ndndibnggapaodjdfoeehgmmpppedgfb
आधिकारिक URL https://chromewebstore.google.com/detail/auto-highlight/ndndibnggapaodjdfoeehgmmpppedgfb
विवरण Auto Highlight is text highlighter with RegExp support
फ़ाइल का आकार 1.9 MB
स्थापना संख्या 10,000
वर्तमान संस्करण 5.3
अंतिम अपडेट 2024-01-22
प्रकाशन तिथि 2020-07-22
रेटिंग 4.80/5 कुल 45 रेटिंग्स
डेवलपर https://fastaddons.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://fastaddons.com/#auto_highlight
सहायता पृष्ठ URL https://github.com/fastaddons/AutoHighlight/issues
गोपनीयता नीति पृष्ठ URL https://github.com/fastaddons/privacy_policy
समर्थित भाषाएँ de,en,fr,sk,sv,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "5.3",
    "author": "Juraj M\u00e4siar",
    "default_locale": "en",
    "name": "__MSG_app_name__",
    "description": "__MSG_app_desc__",
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "background": {
        "service_worker": "background.loader.js"
    },
    "action": {
        "default_icon": {
            "128": "128.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "toggle-highlight": {
            "suggested_key": {
                "default": "Ctrl+Shift+H"
            },
            "description": "Toggles global highlight ON \/ OFF"
        }
    },
    "permissions": [
        "contextMenus",
        "storage",
        "scripting",
        "alarms",
        "activeTab"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "content_scripts\/page_loaded.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "editor\/editor.css",
                "editor\/editor.html",
                "editor\/editor.js",
                "utils\/svg\/resize-corner.svg"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ]
}