Auto Highlight

*Auto Highlight* automatically highlights the important content on article pages.

Auto Highlight क्या है?

Auto Highlight https://dannyadam.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "*Auto Highlight* automatically highlights the important content on article pages."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension automatically highlights the important content on article pages.

It addresses *tl;dr* in a similar way to an article summarizer.

To use, click the highlighter icon in the location bar. Clicking multiple times changes the highlighting coverage. As the page receives more highlighting from clicking the icon, the icon will show less available ink in the highlighter.

Please let me know if you find particular pages where the extension does not work well. *Auto Highlight* currently uses an algorithm for picking important sentences based on term frequencies in the entire article. With examples of problematic pages, I can possibly improve the technology. I would also like to incorporate more advanced techniques from extraction-based article summarization research.

The source code is available on GitHub:
https://github.com/dstein64/highlight

Privacy Policy:
This extension does not collect user data nor transmit user data remotely. Options for the extension are saved locally.                    

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

नाम Auto Highlight Auto Highlight
ID dnkdpcbijfnmekbkchfjapfneigjomhh
आधिकारिक URL https://chromewebstore.google.com/detail/auto-highlight/dnkdpcbijfnmekbkchfjapfneigjomhh
विवरण *Auto Highlight* automatically highlights the important content on article pages.
फ़ाइल का आकार 224 KB
स्थापना संख्या 37,775
वर्तमान संस्करण 3.5.0
अंतिम अपडेट 2022-06-03
प्रकाशन तिथि 2020-03-27
रेटिंग 3.91/5 कुल 22 रेटिंग्स
डेवलपर https://dannyadam.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.dannyadam.com/blog/2015/04/article-highlighter/
सहायता पृष्ठ URL https://github.com/dstein64/highlight/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Highlight",
    "version": "3.5.0",
    "description": "*Auto Highlight* automatically highlights the important content on article pages.",
    "options_ui": {
        "page": "src\/options\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "optional_permissions": [
        "",
        "tabs",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "src\/utils.js",
            "src\/matchPattern.js",
            "src\/eventPage.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/0highlight19x19.png",
            "38": "icons\/0highlight38x38.png"
        },
        "default_title": "Toggle highlighting"
    },
    "icons": {
        "16": "icons\/16x16.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "manifest_version": 2
}