FeedFilter
Filters Youtube feed to based user-created custom rules.
FeedFilterคืออะไร?
FeedFilter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Allan Rempel และคุณลักษณะหลักของมันคือ "Filters Youtube feed to based user-created custom rules."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FeedFilter
ดาวน์โหลดไฟล์ส่วนขยาย FeedFilter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } |