Tagger
Tag web pages so that you can easily find it later.
Что такое Tagger?
Tagger - это расширение Chrome, разработанное jaewoong.info, и его основная функция - "Tag web pages so that you can easily find it later.".
Снимки экрана расширения
Скачать файл CRX расширения Tagger
Скачайте файлы расширений Tagger в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A chrome extension to enable OS X style tagging on web pages. Tagged pages are highlighted on search results pages. By default, highlighting works on Google, Duckduckgo, Yahoo and Bing. You can change settings on options page. Feel free to contribute or report issues: https://github.com/jaewoongh/tagger-chrome
Основная информация о расширении
Название | Tagger |
ID | hedcldmdcdgjaccenecldaklgfkmceaf |
Официальный URL | https://chromewebstore.google.com/detail/tagger/hedcldmdcdgjaccenecldaklgfkmceaf |
Описание | Tag web pages so that you can easily find it later. |
Размер файла | 34.38 KB |
Количество установок | 18 |
Текущая Версия | 1.0 |
Последнее Обновление | 2014-11-19 |
Дата публикации | 2014-11-19 |
Рейтинг | 3.00/5 Всего 1 оценок |
Разработчик | jaewoong.info |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/jaewoongh/tagger-chrome |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tagger", "version": "1.0", "description": "Tag web pages so that you can easily find it later.", "author": "Jaewoong Hwang", "permissions": [ "webNavigation", "tabs", "storage", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "icon-bitty.png", "48": "icon-small.png", "128": "icon-large.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "tagger.js" ] } ], "page_action": { "default_icon": { "19": "pageicon.png", "38": "pageicon2x.png" }, "default_title": "Tag", "default_popup": "popup.html" }, "options_page": "options.html" } |