Date Highlighter
Highlights dates in the current tab.
ما هو Date Highlighter؟
Date Highlighter هو إضافة Chrome تم تطويرها بواسطة Atalia، والميزة الرئيسية لها هي "Highlights dates in the current tab.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Date Highlighter
قم بتنزيل ملفات الامتداد Date Highlighter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |