Custom YouTube Start Stop
This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…
ما هو Custom YouTube Start Stop؟
Custom YouTube Start Stop هو إضافة Chrome تم تطويرها بواسطة Jonathan Li، والميزة الرئيسية لها هي "This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Custom YouTube Start Stop
قم بتنزيل ملفات الامتداد Custom YouTube Start Stop بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is especially useful for long youtube videos for podcasts or bedtime stories.
معلومات أساسية عن التمديد
الاسم | Custom YouTube Start Stop |
ID | lodhfkhkhdjjicigiinipdkcbbndpbme |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/custom-youtube-start-stop/lodhfkhkhdjjicigiinipdkcbbndpbme |
الوصف | This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is… |
حجم الملف | 31.64 KB |
عدد التثبيتات | 39 |
النسخة الحالية | 0.1.2 |
آخر تحديث | 2021-05-11 |
تاريخ النشر | 2021-05-11 |
تقييم | 3.00/5 مجموع تقييمات 2 |
المطور | Jonathan Li |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom YouTube Start Stop", "version": "0.1.2", "offline_enabled": true, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch?v=*" ], "js": [ "content.js" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "19": "img\/icon19.png", "38": "img\/icon38.png", "16": "img\/icon16.png", "24": "img\/icon24.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "page_action": { "default_title": "Custom YouTube Start Stop", "default_popup": "popup.html" }, "permissions": [ "activeTab" ] } |