Coven
All the news a programmer could ever need
Coven là gì?
Coven là một tiện ích mở rộng Chrome được phát triển bởi https://www.coven.link, và tính năng chính của nó là "All the news a programmer could ever need".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Coven
Tải xuống các tệp mở rộng Coven dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Coven |
ID | fnebcmfaoeakcahilaekfmfhmkjnilmk |
URL Chính Thức | https://chromewebstore.google.com/detail/coven/fnebcmfaoeakcahilaekfmfhmkjnilmk |
Mô tả | All the news a programmer could ever need |
Kích Thước Tệp | 342 KB |
Số Lần Cài Đặt | 60 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2016-04-18 |
Ngày Phát Hành | 2016-04-18 |
Đánh Giá | 4.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://www.coven.link |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.coven.link |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |