YouDupe
Mark YouTube videos as duplicate
What is YouDupe?
YouDupe is a Chrome extension developed by https://www.youdupe.app, and its main feature is "Mark YouTube videos as duplicate".
Extension Screenshots
Download YouDupe Extension CRX File
Download YouDupe extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | YouDupe |
ID | koemfgmmbepopkdkgijgmkjanogkokod |
Official URL | https://chromewebstore.google.com/detail/youdupe/koemfgmmbepopkdkgijgmkjanogkokod |
Description | Mark YouTube videos as duplicate |
File Size | 48.51 KB |
Installation Count | 20 |
Current Version | 0.1.2 |
Last Updated | 2018-08-04 |
Publish Date | 2018-08-04 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://www.youdupe.app |
[email protected] | |
Payment Type | free |
Extension Website | https://www.youdupe.app |
Help Page URL | https://www.youdupe.app/faq |
Supported Languages | 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 } |