Date Highlighter

Highlights dates in the current tab.

什麼是Date Highlighter?

Date Highlighter是由Atalia開發的Chrome擴展程式,該擴展的主要功能是“Highlights dates in the current tab.”。

擴展截圖

screenshot
screenshot
screenshot

下載Date Highlighter擴展crx文件

下載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
官方網址 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"
    ]
}