YouDupe
Mark YouTube videos as duplicate
ما هو YouDupe؟
YouDupe هو إضافة Chrome تم تطويرها بواسطة https://www.youdupe.app، والميزة الرئيسية لها هي "Mark YouTube videos as duplicate".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouDupe
قم بتنزيل ملفات الامتداد YouDupe بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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. معلومات أساسية عن التمديد
| الاسم | |
| ID | koemfgmmbepopkdkgijgmkjanogkokod |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/youdupe/koemfgmmbepopkdkgijgmkjanogkokod |
| الوصف | Mark YouTube videos as duplicate |
| حجم الملف | 48.51 KB |
| عدد التثبيتات | 20 |
| النسخة الحالية | 0.1.2 |
| آخر تحديث | 2018-08-04 |
| تاريخ النشر | 2018-08-04 |
| تقييم | 5.00/5 مجموع تقييمات 1 |
| المطور | https://www.youdupe.app |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://www.youdupe.app |
| عنوان صفحة المساعدة | https://www.youdupe.app/faq |
| اللغات المدعومة | 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
} | |