Coven
All the news a programmer could ever need
What is Coven?
Coven is a Chrome extension developed by https://www.coven.link, and its main feature is "All the news a programmer could ever need".
Extension Screenshots
Download Coven Extension CRX File
Download Coven extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Coven |
ID | fnebcmfaoeakcahilaekfmfhmkjnilmk |
Official URL | https://chromewebstore.google.com/detail/coven/fnebcmfaoeakcahilaekfmfhmkjnilmk |
Description | All the news a programmer could ever need |
File Size | 342 KB |
Installation Count | 60 |
Current Version | 2.0 |
Last Updated | 2016-04-18 |
Publish Date | 2016-04-18 |
Rating | 4.00/5 Total 2 Ratings |
Developer | https://www.coven.link |
Payment Type | free |
Extension Website | http://www.coven.link |
Supported Languages | 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" } } |