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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | 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" } } |