Youtube Relist
Lists youtube videos that are unlisted.
ما هو Youtube Relist؟
Youtube Relist هو إضافة Chrome تم تطويرها بواسطة http://fwra.me، والميزة الرئيسية لها هي "Lists youtube videos that are unlisted.".
تحميل ملف CRX للإضافة Youtube Relist
قم بتنزيل ملفات الامتداد Youtube Relist بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension is needed to help add unlisted videos to the database. Head to http://yr.fwra.me/ to search for unlisted videos.
معلومات أساسية عن التمديد
الاسم | |
ID | cjmpedjkkpihnongpkgkmjiemmpjhndi |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/youtube-relist/cjmpedjkkpihnongpkgkmjiemmpjhndi |
الوصف | Lists youtube videos that are unlisted. |
حجم الملف | 39.02 KB |
عدد التثبيتات | 368 |
النسخة الحالية | 1.0 |
آخر تحديث | 2017-10-25 |
تاريخ النشر | 2017-10-25 |
تقييم | 2.33/5 مجموع تقييمات 6 |
المطور | http://fwra.me |
نوع الدفع | free |
موقع الإضافة | http://yr.fwra.me/ |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Relist", "description": "Lists youtube videos that are unlisted.", "version": "1.0", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Youtube Relist" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch?*" ], "js": [ "jquery-3.2.1.min.js", "videoScript.js" ] }, { "matches": [ "http:\/\/yr.fwra.me\/" ], "js": [ "checker.js" ], "run_at": "document_end" } ] } |