Veep
Keep your videos playback positions in sync across all of your devices and browser restarts.
ما هو Veep؟
Veep هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Keep your videos playback positions in sync across all of your devices and browser restarts.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Veep
قم بتنزيل ملفات الامتداد Veep بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Veep allows you to watch Youtube videos from where you let them even if you closed the tab, restarted your browser or even used another computer. In order to synchronize playback positions across all of your devices, you need to be logged into Chrome with the same account and have the sync enabled in the browser settings on every devices.
معلومات أساسية عن التمديد
الاسم | Veep |
ID | floamojfedahogohlnlakmehjnjbnhkj |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/veep/floamojfedahogohlnlakmehjnjbnhkj |
الوصف | Keep your videos playback positions in sync across all of your devices and browser restarts. |
حجم الملف | 23.13 KB |
عدد التثبيتات | 31 |
النسخة الحالية | 1.1.0 |
آخر تحديث | 2016-02-05 |
تاريخ النشر | 2016-02-05 |
المطور | Unknown |
نوع الدفع | free |
عنوان صفحة المساعدة | https://github.com/cGuille/veep |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Veep", "description": "Keep your videos playback positions in sync across all of your devices and browser restarts.", "version": "1.1.0", "icons": { "16": "img\/veep-16.png", "48": "img\/veep-48.png", "128": "img\/veep-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch*" ], "js": [ "src\/youtube-storage.js", "src\/url-params.js", "src\/youtube.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "src\/youtube-storage.js", "src\/youtube-cleanup.js", "src\/videos-count.js" ] }, "browser_action": { "default_icon": { "19": "img\/veep-19.png", "38": "img\/veep-38.png" }, "default_popup": "src\/last-videos.html", "default_title": "Veep" }, "permissions": [ "storage" ] } |