RadiTube Browser Extension
The RadiTube Browser Extension shows the metadata of removed YouTube videos.
RadiTube Browser Extension là gì?
RadiTube Browser Extension là một tiện ích mở rộng Chrome được phát triển bởi RadiTube Technologies Inc, và tính năng chính của nó là "The RadiTube Browser Extension shows the metadata of removed YouTube videos.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng RadiTube Browser Extension
Tải xuống các tệp mở rộng RadiTube Browser Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | bhkkfpncfhigbkbnpkaobmiipenjndhm |
URL Chính Thức | https://chrome.google.com/webstore/detail/raditube-browser-extensio/bhkkfpncfhigbkbnpkaobmiipenjndhm |
Mô tả | The RadiTube Browser Extension shows the metadata of removed YouTube videos. |
Kích Thước Tệp | 476 KB |
Số Lần Cài Đặt | 93 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2021-09-29 |
Ngày Phát Hành | 2021-09-29 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | RadiTube Technologies Inc |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.raditube.com |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } } |