Date Highlighter

Highlights dates in the current tab.

Date Highlighterคืออะไร?

Date Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Atalia และคุณลักษณะหลักของมันคือ "Highlights dates in the current tab."

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

screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Date Highlighter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The extension will search for dates on the current web page and highlight them. Simply click on the blue highlighter icon and look for the highlighted text. This is useful for sites like coding blogs, where older content may become irrelevant.
This is an open source project, the code is available on https://github.com/amomsen/datehighlighter                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Date Highlighter Date Highlighter
ID efeboclghfaoicleloajmcaeegbkkjkh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/date-highlighter/efeboclghfaoicleloajmcaeegbkkjkh
คำอธิบาย Highlights dates in the current tab.
ขนาดไฟล์ 169 KB
จำนวนการติดตั้ง 56
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2016-09-05
วันที่เผยแพร่ 2016-09-05
คะแนน 3.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Atalia
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Date Highlighter",
    "short_name": "Date Highlighter",
    "version": "1.0.3",
    "permissions": [
        "tabs",
        "notifications",
        "activeTab"
    ],
    "description": "Highlights dates in the current tab.",
    "icons": {
        "16": "16.png",
        "24": "24.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png",
        "256": "256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Highlight dates",
        "default_icon": "16.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "48.png"
    ]
}