Video Tool
Add loop play function to any html5 video and other tweaks for video playing.
ما هو Video Tool؟
Video Tool هو إضافة Chrome تم تطويرها بواسطة SAGAN، والميزة الرئيسية لها هي "Add loop play function to any html5 video and other tweaks for video playing.".
تحميل ملف CRX للإضافة Video Tool
قم بتنزيل ملفات الامتداد Video Tool بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Video playing enhancement extension. It should work on any website that is using HTML5 video player. Features * Loop play the video of any web page. * Show current time in page title when playing video.
معلومات أساسية عن التمديد
الاسم | ![]() |
ID | fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/video-tool/fnapgmcbpehohbcjpfdoaiokmmgfnnkn |
الوصف | Add loop play function to any html5 video and other tweaks for video playing. |
حجم الملف | 8.31 KB |
عدد التثبيتات | 4,000 |
النسخة الحالية | 1.0.1 |
آخر تحديث | 2018-02-11 |
تاريخ النشر | 2018-02-11 |
المطور | SAGAN |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/sagan/chrome-extension-video-tool |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Tool", "description": "Add loop play function to any html5 video and other tweaks for video playing.", "version": "1.0.1", "author": "Jacques De SAGAN", "manifest_version": 2, "permissions": [ "tabs", "storage" ], "browser_action": { "default_title": "Video Tool", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "all_frames": false }, { "js": [ "fucknicovideo.js" ], "matches": [ "http:\/\/www.nicovideo.jp\/watch\/sm*", "https:\/\/www.nicovideo.jp\/watch\/sm*" ], "run_at": "document_start", "all_frames": false } ] } |