Auto Highlight

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

什么是Auto Highlight?

Auto Highlight是由https://dannyadam.com开发的Chrome扩展程序,该扩展的主要功能是“*Auto Highlight* automatically highlights the important content on article pages.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Auto Highlight扩展crx文件

下载Auto Highlight扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
}