Hyliter
Saves selected bits of text from your browsing.
Что такое Hyliter?
Hyliter - это расширение Chrome, разработанное Bibek Ghimire, и его основная функция - "Saves selected bits of text from your browsing.".
Снимки экрана расширения
Скачать файл CRX расширения Hyliter
Скачайте файлы расширений Hyliter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Save important text for later while browsing the web. You can save quotes, confirmation numbers, or even personal notes.
Основная информация о расширении
Название | Hyliter |
ID | nhiannhalledfohikpmbclkalcknilcg |
Официальный URL | https://chromewebstore.google.com/detail/hyliter/nhiannhalledfohikpmbclkalcknilcg |
Описание | Saves selected bits of text from your browsing. |
Размер файла | 63.43 KB |
Количество установок | 31 |
Текущая Версия | 0.1 |
Последнее Обновление | 2017-01-02 |
Дата публикации | 2017-01-02 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Bibek Ghimire |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hyliter", "description": "Saves selected bits of text from your browsing.", "version": "0.1", "permissions": [ "contextMenus" ], "web_accessible_resources": [ "fonts\/*.woff2" ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/content.css" ], "js": [ "js\/jquery-3.1.1.min.js", "js\/content.js" ] } ], "browser_action": { "default_title": "View Hylites", "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "24": "icons\/icon24.png", "32": "icons\/icon32.png" } }, "background": { "scripts": [ "js\/jquery-3.1.1.min.js", "js\/hyliter.js", "js\/background.js" ], "persistent": true } } |