RadiTube Browser Extension
The RadiTube Browser Extension shows the metadata of removed YouTube videos.
RadiTube Browser Extension क्या है?
RadiTube Browser Extension RadiTube Technologies Inc द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The RadiTube Browser Extension shows the metadata of removed YouTube videos."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में RadiTube Browser Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } } |