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.」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
ID | bhkkfpncfhigbkbnpkaobmiipenjndhm |
公式URL | 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 |
Eメール | [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" ] } } |