FeedFilter
Filters Youtube feed to based user-created custom rules.
FeedFilter क्या है?
FeedFilter Allan Rempel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Filters Youtube feed to based user-created custom rules."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में FeedFilter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Filters your subscription feed based on custom rules. For example, I wanted to subscribe to only some of the videos that a channel published, while ignoring the rest. Supports regular expressions (for those who know what that is).
एक्सटेंशन की मूल जानकारी
नाम | |
ID | nkbglieidoihblpjhjbghfieddecefmd |
आधिकारिक URL | https://chrome.google.com/webstore/detail/feedfilter/nkbglieidoihblpjhjbghfieddecefmd |
विवरण | Filters Youtube feed to based user-created custom rules. |
फ़ाइल का आकार | 56.02 KB |
स्थापना संख्या | 12 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2015-02-06 |
प्रकाशन तिथि | 2015-02-06 |
रेटिंग | 3.25/5 कुल 4 रेटिंग्स |
डेवलपर | Allan Rempel |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_name__", "description": "__MSG_description__", "version": "1.1", "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "storage", "https:\/\/www.youtube.com\/" ], "default_locale": "en", "page_action": { "default_icon": "filter24.png", "default_title": "__MSG_name__", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "jquery.js", "filter.js" ] } ], "options_page": "options.html", "icons": { "16": "filter16.png", "24": "filter24.png", "128": "filter128.png" } } |