veefeed

Keep track of your YouTube and Twitch subscriptions

veefeed là gì?

veefeed là một tiện ích mở rộng Chrome được phát triển bởi fent, và tính năng chính của nó là "Keep track of your YouTube and Twitch subscriptions".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng veefeed

Tải xuống các tệp mở rộng veefeed dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên veefeed veefeed
ID elpfmfdcigaklhenpknoifgfcfnefkdf
URL Chính Thức https://chromewebstore.google.com/detail/veefeed/elpfmfdcigaklhenpknoifgfcfnefkdf
Mô tả Keep track of your YouTube and Twitch subscriptions
Kích Thước Tệp 1.56 MB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 0.10.5
Cập Nhật Lần Cuối 2022-01-17
Ngày Phát Hành 2019-07-11
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển fent
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/fent/chrome-veefeed
URL Trang Trợ Giúp https://github.com/fent/chrome-veefeed/issues
Ngôn Ngữ Được Hỗ Trợ 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
    }
}