Twitch VOD Addressbar Sync
Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.
ما هو Twitch VOD Addressbar Sync؟
Twitch VOD Addressbar Sync هو إضافة Chrome تم تطويرها بواسطة literallyjosh.com، والميزة الرئيسية لها هي "Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Twitch VOD Addressbar Sync
قم بتنزيل ملفات الامتداد Twitch VOD Addressbar Sync بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Just syncs the twitch.tv addressbar with the video timestamp on VODs (in the HTML5 player only). There are quirks with it adding a ton of history entries but there's an option to remove old entries.
معلومات أساسية عن التمديد
الاسم | Twitch VOD Addressbar Sync |
ID | bidddahndlgibpldmghnjegldfamnmnc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/twitch-vod-addressbar-syn/bidddahndlgibpldmghnjegldfamnmnc |
الوصف | Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player. |
حجم الملف | 66.65 KB |
عدد التثبيتات | 26 |
النسخة الحالية | 0.1 |
آخر تحديث | 2015-08-28 |
تاريخ النشر | 2015-08-28 |
تقييم | 3.00/5 مجموع تقييمات 2 |
المطور | literallyjosh.com |
نوع الدفع | free |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch VOD Addressbar Sync", "description": "Syncs the twitch.tv addressbar with the video timestamp on VODs in the HTML5 player.", "version": "0.1", "icons": { "16": "Bandage-26.png", "48": "Bandage-50.png" }, "page_action": { "default_icon": "Bandage-26.png", "default_title": "Twitch VOD Addressbar Sync", "default_popup": "options.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.twitch.tv\/*\/v\/*" ], "js": [ "jquery-1.11.3.min.js", "jquery.history.js", "sync_bar.js" ] } ], "permissions": [ "tabs", "history", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true } } |