Coven
All the news a programmer could ever need
Coven क्या है?
Coven https://www.coven.link द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "All the news a programmer could ever need"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Coven एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |