Hack the News
A Hacker News icon that notifies you when the top story changes.
Что такое Hack the News?
Hack the News - это расширение Chrome, разработанное github.com/robbiewain, и его основная функция - "A Hacker News icon that notifies you when the top story changes.".
Снимки экрана расширения
Скачать файл CRX расширения Hack the News
Скачайте файлы расширений Hack the News в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Displays a Hacker News icon on your browser that changes color when the top story changes.
Source code at https://github.com/robbiewain/hack-the-news Основная информация о расширении
| Название | |
| ID | oehghgdldepmknikdpjakmpbonlkmnfa |
| Официальный URL | https://chromewebstore.google.com/detail/hack-the-news/oehghgdldepmknikdpjakmpbonlkmnfa |
| Описание | A Hacker News icon that notifies you when the top story changes. |
| Размер файла | 101 KB |
| Количество установок | 60 |
| Текущая Версия | 0.1.1 |
| Последнее Обновление | 2017-12-07 |
| Дата публикации | 2017-12-06 |
| Рейтинг | 4.75/5 Всего 4 оценок |
| Разработчик | github.com/robbiewain |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/robbiewain/hack-the-news |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Hack the News",
"version": "0.1.1",
"manifest_version": 2,
"description": "A Hacker News icon that notifies you when the top story changes.",
"content_security_policy": "script-src 'self' https:\/\/*.firebaseio.com; object-src 'self'",
"icons": {
"16": "images\/hacker-news-16.png",
"128": "images\/hacker-news-128.png"
},
"background": {
"scripts": [
"app.js"
],
"persistent": true
},
"browser_action": {
"default_icon": {
"19": "images\/hacker-news-19.png",
"38": "images\/hacker-news-38.png"
},
"default_title": "Hack the News",
"default_popup": "index.html"
},
"permissions": [
"storage"
]
} | |