Date Highlighter
Highlights dates in the current tab.
Apa itu Date Highlighter?
Date Highlighter adalah ekstensi Chrome yang dikembangkan oleh Atalia, dan fitur utamanya adalah "Highlights dates in the current tab.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Date Highlighter
Unduh file ekstensi Date Highlighter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | efeboclghfaoicleloajmcaeegbkkjkh |
URL Resmi | https://chrome.google.com/webstore/detail/date-highlighter/efeboclghfaoicleloajmcaeegbkkjkh |
Deskripsi | Highlights dates in the current tab. |
Ukuran File | 169 KB |
Jumlah Instalasi | 56 |
Versi Saat Ini | 1.0.3 |
Terakhir Diperbarui | 2016-09-05 |
Tanggal Publikasi | 2016-09-05 |
Penilaian | 3.33/5 Total 3 Penilaian |
Pengembang | Atalia |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |