YouDupe
Mark YouTube videos as duplicate
Was ist YouDupe?
YouDupe ist eine Chrome-Erweiterung, die von https://www.youdupe.app entwickelt wurde, und ihr Hauptmerkmal ist "Mark YouTube videos as duplicate".
Erweiterungsscreenshots
YouDupe-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouDupe-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
People re-upload the exact same video on YouTube. YouDupe, through crowd-sourcing, can mark these videos as duplicate and point to the original. This is not a copyright tool. Instead, it helps redirect viewers to the original uploader. New: - Click bait titles can now be changed by suggestions by the community.
Grundlegende Informationen zur Erweiterung
Name | YouDupe |
ID | koemfgmmbepopkdkgijgmkjanogkokod |
Offizielle URL | https://chromewebstore.google.com/detail/youdupe/koemfgmmbepopkdkgijgmkjanogkokod |
Beschreibung | Mark YouTube videos as duplicate |
Dateigröße | 48.51 KB |
Installationsanzahl | 20 |
Aktuelle Version | 0.1.2 |
Letztes Update | 2018-08-04 |
Veröffentlichungsdatum | 2018-08-04 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://www.youdupe.app |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.youdupe.app |
Hilfeseite URL | https://www.youdupe.app/faq |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouDupe", "short_name": "YouDupe", "version": "0.1.2", "description": "Mark YouTube videos as duplicate", "background": { "scripts": [ "background.js" ] }, "permissions": [ "https:\/\/www.youtube.com\/*", "activeTab", "https:\/\/api.youdupe.app\/", "storage" ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "run_at": "document_idle", "css": [ "css\/styles.css" ], "js": [ "content.js" ] } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |