RadiTube Browser Extension

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

什麼是RadiTube Browser Extension?

RadiTube Browser Extension是由RadiTube Technologies Inc開發的Chrome擴展程式,該擴展的主要功能是“The RadiTube Browser Extension shows the metadata of removed YouTube videos.”。

擴展截圖

screenshot

下載RadiTube Browser Extension擴展crx文件

下載RadiTube Browser Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 RadiTube Browser Extension RadiTube Browser Extension
ID bhkkfpncfhigbkbnpkaobmiipenjndhm
官方網址 https://chrome.google.com/webstore/detail/raditube-browser-extensio/bhkkfpncfhigbkbnpkaobmiipenjndhm
簡介 The RadiTube Browser Extension shows the metadata of removed YouTube videos.
檔案大小 476 KB
安裝次數 93
目前版本 1.0.0
更新時間 2021-09-29
上架時間 2021-09-29
評分 5.00/5 共 1 次評分
開發者 RadiTube Technologies Inc
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.raditube.com
支援的語言 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"
        ]
    }
}