veefeed
Keep track of your YouTube and Twitch subscriptions
veefeed क्या है?
veefeed fent द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Keep track of your YouTube and Twitch subscriptions"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में veefeed एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Do you find yourself following several channels on YouTube and/or Twitch? Do you miss the days when YouTube allowed you to categorize your subscriptions? * Supports YouTube and Twich * Get notified when new videos are uploaded * Auto organize your videos into groups based on patterns * Ignore videos based on patterns * Queue up videos to play when the current video ends All of the features are optional. No need to authenticate or specify your username, just be logged in to the video websites that you enable.
एक्सटेंशन की मूल जानकारी
नाम | veefeed |
ID | elpfmfdcigaklhenpknoifgfcfnefkdf |
आधिकारिक URL | https://chromewebstore.google.com/detail/veefeed/elpfmfdcigaklhenpknoifgfcfnefkdf |
विवरण | Keep track of your YouTube and Twitch subscriptions |
फ़ाइल का आकार | 1.56 MB |
स्थापना संख्या | 26 |
वर्तमान संस्करण | 0.10.5 |
अंतिम अपडेट | 2022-01-17 |
प्रकाशन तिथि | 2019-07-11 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | fent |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/fent/chrome-veefeed |
सहायता पृष्ठ URL | https://github.com/fent/chrome-veefeed/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "veefeed", "version": "0.10.5", "description": "Keep track of your YouTube and Twitch subscriptions", "applications": { "gecko": { "id": "[email protected]" } }, "icons": { "128": "img\/icon-128.png" }, "permissions": [ "https:\/\/www.twitch.tv\/", "https:\/\/api.twitch.tv\/", "https:\/\/www.youtube.com\/", "https:\/\/haloruns.z20.web.core.windows.net\/content\/feeds\/latestRecords.json", "https:\/\/www.speedrun.com\/", "https:\/\/t.co\/", "contextMenus", "cookies", "notifications", "storage" ], "author": "fent (https:\/\/github.com\/fent)", "background": { "page": "background\/background.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/watch?*v=*" ], "js": [ "util\/time.js", "util\/hyperscript.js", "content\/shared.js", "content\/youtube.js" ], "css": [ "content\/style.css" ] }, { "matches": [ "https:\/\/www.twitch.tv\/videos\/*" ], "js": [ "util\/time.js", "util\/hyperscript.js", "content\/shared.js", "content\/twitch.js" ], "css": [ "content\/style.css" ] } ], "browser_action": { "default_popup": "popup\/popup.html" }, "options_ui": { "page": "options\/options.html", "open_in_tab": true } } |