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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}