YouDupe
Mark YouTube videos as duplicate
Wat is YouDupe?
YouDupe is een Chrome-extensie ontwikkeld door https://www.youdupe.app, en de belangrijkste functie is "Mark YouTube videos as duplicate".
Extensie Screenshots
Download het CRX-bestand van de extensie YouDupe
Download YouDupe-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | YouDupe |
ID | koemfgmmbepopkdkgijgmkjanogkokod |
Officiële URL | https://chromewebstore.google.com/detail/youdupe/koemfgmmbepopkdkgijgmkjanogkokod |
Beschrijving | Mark YouTube videos as duplicate |
Bestandsgrootte | 48.51 KB |
Aantal Installaties | 20 |
Huidige Versie | 0.1.2 |
Laatst Bijgewerkt | 2018-08-04 |
Publicatiedatum | 2018-08-04 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | https://www.youdupe.app |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.youdupe.app |
Help Pagina-URL | https://www.youdupe.app/faq |
Ondersteunde Talen | 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 } |