Date Highlighter
Highlights dates in the current tab.
什么是Date Highlighter?
Date Highlighter是由Atalia开发的Chrome扩展程序,该扩展的主要功能是“Highlights dates in the current tab.”。
扩展截图
下载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
扩展基本信息
名称 | |
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" ] } |