RadiTube Browser Extension
The RadiTube Browser Extension shows the metadata of removed YouTube videos.
Qu'est-ce que RadiTube Browser Extension ?
RadiTube Browser Extension est une extension Chrome développée par RadiTube Technologies Inc, et sa fonction principale est "The RadiTube Browser Extension shows the metadata of removed YouTube videos.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension RadiTube Browser Extension
Téléchargez les fichiers d'extension RadiTube Browser Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | bhkkfpncfhigbkbnpkaobmiipenjndhm |
URL Officiel | https://chrome.google.com/webstore/detail/raditube-browser-extensio/bhkkfpncfhigbkbnpkaobmiipenjndhm |
Description | The RadiTube Browser Extension shows the metadata of removed YouTube videos. |
Taille du Fichier | 476 KB |
Nombre d'Installations | 93 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2021-09-29 |
Date de Publication | 2021-09-29 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | RadiTube Technologies Inc |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.raditube.com |
Langues Prises en Charge | 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" ] } } |