Coven
All the news a programmer could ever need
Что такое Coven?
Coven - это расширение Chrome, разработанное https://www.coven.link, и его основная функция - "All the news a programmer could ever need".
Снимки экрана расширения
Скачать файл CRX расширения Coven
Скачайте файлы расширений Coven в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Coven is a chrome extension that shows the content of http://www.coven.link on your new tab screen. It's a new aggregator for Programmers. It shows content from:
- Hacker News
- /r/programming
- Lobste.rs
- Product Hunt
It allows you to easily customize which of these sources show up on your homepage (no signup required!). It automatically updates your feed. Основная информация о расширении
| Название | |
| ID | fnebcmfaoeakcahilaekfmfhmkjnilmk |
| Официальный URL | https://chromewebstore.google.com/detail/coven/fnebcmfaoeakcahilaekfmfhmkjnilmk |
| Описание | All the news a programmer could ever need |
| Размер файла | 342 KB |
| Количество установок | 60 |
| Текущая Версия | 2.0 |
| Последнее Обновление | 2016-04-18 |
| Дата публикации | 2016-04-18 |
| Рейтинг | 4.00/5 Всего 2 оценок |
| Разработчик | https://www.coven.link |
| Тип оплаты | free |
| Официальный сайт расширения | http://www.coven.link |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Coven",
"description": "All the news a programmer could ever need",
"version": "2.0",
"permissions": [
"https:\/\/api.coven.link\/"
],
"content_scripts": [
{
"matches": [
"http:\/\/www.google.com\/*"
],
"css": [
"stylesheets\/application.css"
],
"js": [
"javascripts\/application.js"
]
}
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"chrome_url_overrides": {
"newtab": "index.html"
}
} | |