Date Highlighter
Highlights dates in the current tab.
Co to jest Date Highlighter?
Date Highlighter to rozszerzenie Chrome opracowane przez Atalia, a jego główną funkcją jest „Highlights dates in the current tab.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Date Highlighter
Pobierz pliki rozszerzeń Date Highlighter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | efeboclghfaoicleloajmcaeegbkkjkh |
Oficjalny URL | https://chrome.google.com/webstore/detail/date-highlighter/efeboclghfaoicleloajmcaeegbkkjkh |
Opis | Highlights dates in the current tab. |
Rozmiar pliku | 169 KB |
Liczba instalacji | 56 |
Aktualna Wersja | 1.0.3 |
Ostatnia Aktualizacja | 2016-09-05 |
Data Publikacji | 2016-09-05 |
Ocena | 3.33/5 Łącznie 3 Oceny |
Deweloper | Atalia |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |