YouDupe
Mark YouTube videos as duplicate
Apa itu YouDupe?
YouDupe adalah ekstensi Chrome yang dikembangkan oleh https://www.youdupe.app, dan fitur utamanya adalah "Mark YouTube videos as duplicate".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi YouDupe
Unduh file ekstensi YouDupe dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | YouDupe |
ID | koemfgmmbepopkdkgijgmkjanogkokod |
URL Resmi | https://chromewebstore.google.com/detail/youdupe/koemfgmmbepopkdkgijgmkjanogkokod |
Deskripsi | Mark YouTube videos as duplicate |
Ukuran File | 48.51 KB |
Jumlah Instalasi | 20 |
Versi Saat Ini | 0.1.2 |
Terakhir Diperbarui | 2018-08-04 |
Tanggal Publikasi | 2018-08-04 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | https://www.youdupe.app |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.youdupe.app |
URL Halaman Bantuan | https://www.youdupe.app/faq |
Bahasa yang Didukung | 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 } |