Auto Highlight

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

Auto Highlightคืออะไร?

Auto Highlight เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://dannyadam.com และคุณลักษณะหลักของมันคือ "*Auto Highlight* automatically highlights the important content on article pages."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Highlight

ดาวน์โหลดไฟล์ส่วนขยาย 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
}