Coven
All the news a programmer could ever need
什么是Coven?
Coven是由https://www.coven.link开发的Chrome扩展程序,该扩展的主要功能是“All the news a programmer could ever need”。
扩展截图
下载Coven扩展crx文件
下载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.
扩展基本信息
名称 | Coven |
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" } } |