Highlighter

Highlight text on websites with a simple right-click or keyboard shortcut. Saves highlights on your device.

Highlighter क्या है?

Highlighter Jérôme Parent-Lévesque द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Highlight text on websites with a simple right-click or keyboard shortcut. Saves highlights on your device."।

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

screenshot
screenshot

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

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

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

                        Easiest way to highlight text on any webpage! Simply select text, then right click it to select the "Highlight" option. Alternatively, use the default keyboard shortcut 'Alt+H' (^H on Mac).

All highlighted texts are saved so that your highlights are not lost when exiting a page! Simply re-opening that page will bring back all the highlights. NOTE: This does not work on very dynamic webpages like Facebook and most email clients. Support for these might be added in the future.

➪ View and copy all highlights on a page
➪ Copy all your highlights to your clipboard easily.
➪ Select existing highlights with a simple click to either delete them or to copy their content.
➪ Customize your highlight colors (and text color).
➪ Change the keyboard shortcut through Chrome settings at 'chrome://extensions/shortcuts'.


The code for this project is fully open-source and is available on GitHub:
https://github.com/jeromepl/highlighter
Help this project by reporting issues and contributing there!


---------

Disclaimer: This extension uses Google Analytics to gather non-personal user information and usage information. We DO NOT collect browsing information such as the contents of highlights or accessed URLs. For more information, consult our privacy policy at the link below.

The privacy policy for this extension can be found here: https://github.com/jeromepl/highlighter/blob/master/privacy_policy.md                    

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

नाम Highlighter Highlighter
ID fdfcjfoifbjplmificlkdfneafllkgmn
आधिकारिक URL https://chromewebstore.google.com/detail/highlighter/fdfcjfoifbjplmificlkdfneafllkgmn
विवरण Highlight text on websites with a simple right-click or keyboard shortcut. Saves highlights on your device.
फ़ाइल का आकार 89.5 KB
स्थापना संख्या 152,329
वर्तमान संस्करण 4.0.5
अंतिम अपडेट 2023-06-26
प्रकाशन तिथि 2019-10-27
रेटिंग 3.79/5 कुल 235 रेटिंग्स
डेवलपर Jérôme Parent-Lévesque
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/jeromepl/highlighter/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Highlighter",
    "description": "Highlight text on websites with a simple right-click or keyboard shortcut. Saves highlights on your device.",
    "version": "4.0.5",
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/16.png",
            "48": "images\/48.png",
            "128": "images\/128.png"
        },
        "default_popup": "src\/popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/jquery-2.1.3.min.js",
                "contentScript.js"
            ],
            "css": [
                "src\/contentScripts\/hoverTools\/index.css"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "commands": {
        "execute-highlight": {
            "suggested_key": {
                "default": "Alt+H",
                "mac": "MacCtrl+H"
            },
            "description": "Highlight selected text"
        },
        "toggle-highlighter-cursor": {
            "description": "Toggle the highlighter cursor"
        },
        "change-color-to-yellow": {
            "description": "Change highlighter color to yellow"
        },
        "change-color-to-cyan": {
            "description": "Change highlighter color to blue"
        },
        "change-color-to-lime": {
            "description": "Change highlighter color to green"
        },
        "change-color-to-magenta": {
            "description": "Change highlighter color to pink"
        },
        "change-color-to-dark": {
            "description": "Change highlighter color to dark"
        }
    },
    "permissions": [
        "contextMenus",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*.png",
                "images\/*.svg",
                "src\/contentScripts\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}