LinkHistory
Show visited links
Что такое LinkHistory?
LinkHistory - это расширение Chrome, разработанное Xitake, и его основная функция - "Show visited links".
Снимки экрана расширения
Скачать файл CRX расширения LinkHistory
Скачайте файлы расширений LinkHistory в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
LinkHistory lets you remember last date and time of visited link, and show you the date of the first and last visit in addition to the number of vists so far. Remember also that in the control panel you can select the color of visited links, enable or disable the balloon text and delete the history of visited links.
Основная информация о расширении
Название | |
ID | kkfohjphkeplcjojeiannnmbhflimpae |
Официальный URL | https://chrome.google.com/webstore/detail/linkhistory/kkfohjphkeplcjojeiannnmbhflimpae |
Описание | Show visited links |
Размер файла | 106 KB |
Количество установок | 546 |
Текущая Версия | 1.1 |
Последнее Обновление | 2016-09-24 |
Дата публикации | 2016-09-24 |
Рейтинг | 4.71/5 Всего 7 оценок |
Разработчик | Xitake |
Тип оплаты | free |
Официальный сайт расширения | http://www.xitake.com |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LinkHistory", "version": "1.1", "description": "Show visited links", "icons": { "32": "img\/icon32.png", "48": "img\/icon48.png", "64": "img\/icon64.png", "128": "img\/icon128.png", "256": "img\/icon256.png" }, "background": { "scripts": [ "js\/jquery-2.2.3.min.js", "js\/background.js" ] }, "browser_action": { "default_title": "LinkHistory", "default_icon": "img\/icon128.png", "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/*\/*" ], "js": [ "js\/jquery-2.2.3.min.js", "js\/script.js" ], "css": [ "css\/style.css" ] } ], "permissions": [ "tabs", "storage" ] } |