veefeed

Keep track of your YouTube and Twitch subscriptions

veefeedとは何ですか?

veefeedはfentによって開発されたChromeの拡張機能で、その主な機能は「Keep track of your YouTube and Twitch subscriptions」です。

拡張機能のスクリーンショット

screenshot
screenshot

veefeed拡張機能のCRXファイルをダウンロード

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
Eメール [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
    }
}