RadiTube Browser Extension

The RadiTube Browser Extension shows the metadata of removed YouTube videos.

O que é RadiTube Browser Extension?

RadiTube Browser Extension é uma extensão do Chrome desenvolvida por RadiTube Technologies Inc, e sua principal característica é "The RadiTube Browser Extension shows the metadata of removed YouTube videos.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão RadiTube Browser Extension

Baixe arquivos de extensão RadiTube Browser Extension 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

                        YouTube's moderation policy is opaque and ad-hoc. Every once in a while YouTube publishes a PR statement notifying the public that certain channels have been removed. However it rarely publishes which videos and channels are exactly removed.

The RadiTube Browser Extension tries to make YouTube's moderation policy more clear by showing the metadata (transcripts, title, descriptions, channel names, views) of removed YouTube videos. It's a perfect companion for journalists and researchers who are doing research into disinformation. All the metadata is permanently stored on the Arweave network.

The extension currently stored a limited amount of removed videos (roughly 80.000), but we expect to rapidly increase this in the upcoming months.                    

Informações Básicas da Extensão

Nome RadiTube Browser Extension RadiTube Browser Extension
ID bhkkfpncfhigbkbnpkaobmiipenjndhm
URL Oficial https://chrome.google.com/webstore/detail/raditube-browser-extensio/bhkkfpncfhigbkbnpkaobmiipenjndhm
Descrição The RadiTube Browser Extension shows the metadata of removed YouTube videos.
Tamanho do Arquivo 476 KB
Contagem de Instalações 93
Versão Atual 1.0.0
Última Atualização 2021-09-29
Data de Publicação 2021-09-29
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor RadiTube Technologies Inc
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.raditube.com
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RadiTube Browser Extension",
    "version": "1.0.0",
    "description": "The RadiTube Browser Extension shows the metadata of removed YouTube videos.",
    "homepage_url": "https:\/\/www.raditube.com",
    "manifest_version": 2,
    "minimum_chrome_version": "74",
    "icons": {
        "128": "\/icon.png"
    },
    "permissions": [
        "webNavigation"
    ],
    "optional_permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "options_ui": {
        "chrome_style": true,
        "page": "\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                "\/contentScript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "\/background.js"
        ]
    }
}