veefeed

Keep track of your YouTube and Twitch subscriptions

O que é veefeed?

veefeed é uma extensão do Chrome desenvolvida por fent, e sua principal característica é "Keep track of your YouTube and Twitch subscriptions".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão veefeed

Baixe arquivos de extensão veefeed no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome veefeed veefeed
ID elpfmfdcigaklhenpknoifgfcfnefkdf
URL Oficial https://chromewebstore.google.com/detail/veefeed/elpfmfdcigaklhenpknoifgfcfnefkdf
Descrição Keep track of your YouTube and Twitch subscriptions
Tamanho do Arquivo 1.56 MB
Contagem de Instalações 26
Versão Atual 0.10.5
Última Atualização 2022-01-17
Data de Publicação 2019-07-11
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor fent
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/fent/chrome-veefeed
URL da Página de Ajuda https://github.com/fent/chrome-veefeed/issues
Idiomas Suportados 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
    }
}