veefeed

Keep track of your YouTube and Twitch subscriptions

veefeedคืออะไร?

veefeed เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fent และคุณลักษณะหลักของมันคือ "Keep track of your YouTube and Twitch subscriptions"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย veefeed

ดาวน์โหลดไฟล์ส่วนขยาย veefeed ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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
    }
}