RadiTube Browser Extension
The RadiTube Browser Extension shows the metadata of removed YouTube videos.
RadiTube Browser Extensionคืออะไร?
RadiTube Browser Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย RadiTube Technologies Inc และคุณลักษณะหลักของมันคือ "The RadiTube Browser Extension shows the metadata of removed YouTube videos."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RadiTube Browser Extension
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" ] } } |