Coven
All the news a programmer could ever need
Wat is Coven?
Coven is een Chrome-extensie ontwikkeld door https://www.coven.link, en de belangrijkste functie is "All the news a programmer could ever need".
Extensie Screenshots
Download het CRX-bestand van de extensie Coven
Download Coven-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Coven |
ID | fnebcmfaoeakcahilaekfmfhmkjnilmk |
Officiële URL | https://chromewebstore.google.com/detail/coven/fnebcmfaoeakcahilaekfmfhmkjnilmk |
Beschrijving | All the news a programmer could ever need |
Bestandsgrootte | 342 KB |
Aantal Installaties | 60 |
Huidige Versie | 2.0 |
Laatst Bijgewerkt | 2016-04-18 |
Publicatiedatum | 2016-04-18 |
Beoordeling | 4.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | https://www.coven.link |
Betalingswijze | free |
Extensiewebsite | http://www.coven.link |
Ondersteunde Talen | 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" } } |