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.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου 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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα RadiTube Browser Extension RadiTube Browser Extension
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"
        ]
    }
}