AdjusTimer
Amazon Prime Video/Tver/Youtube/dアニメストア/Netflix/ニコニコ動画の現在の再生時間を別ウィンドウで映す拡張
AdjusTimerคืออะไร?
AdjusTimer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย patioglass และคุณลักษณะหลักของมันคือ "Amazon Prime Video/Tver/Youtube/dアニメストア/Netflix/ニコニコ動画の現在の再生時間を別ウィンドウで映す拡張"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AdjusTimer
ดาวน์โหลดไฟล์ส่วนขยาย AdjusTimer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
# 概要
同時配信用の現在視聴時間を別ウィンドウで表示することのできるタイマー拡張
・タイトル取得
・現在時間取得
が可能です。
是非、同時視聴などをyoutube配信でする際のタイマーとしてご活用ください。
詳しい使い方、対応ページなどは
→ https://patiopatimon.com/adjustimer/
(アマプラ[Amazon Prime Video, ウォッチパーティ]、Youtube、Tver, dアニメストア, Netflix,Twitch[ウォッチパーティ]/ニコニコ動画)
利用調査アンケートもやっています⇒https://forms.gle/36TSR82ob8hNdXht5
# 利用実績紹介など
https://patioglass.fanbox.cc/tags/AdjusTimer ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | cbolehniipnbcbmecpekldhjhnohifpm |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/adjustimer/cbolehniipnbcbmecpekldhjhnohifpm |
| คำอธิบาย | Amazon Prime Video/Tver/Youtube/dアニメストア/Netflix/ニコニコ動画の現在の再生時間を別ウィンドウで映す拡張 |
| ขนาดไฟล์ | 258 KB |
| จำนวนการติดตั้ง | 2,186 |
| เวอร์ชันปัจจุบัน | 2.2.8 |
| อัปเดตครั้งล่าสุด | 2024-01-23 |
| วันที่เผยแพร่ | 2020-12-06 |
| ผู้พัฒนา | patioglass |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://patiopatimon.com/adjustimer/ |
| URL หน้าช่วยเหลือ | https://patiopatimon.com/adjustimer/ |
| URL หน้านโยบายความเป็นส่วนตัว | https://patiopatimon.com/adjustimer/privacy.html |
| ภาษาที่รองรับ | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "AdjusTimer",
"manifest_version": 2,
"version": "2.2.8",
"description": "Amazon Prime Video\/Tver\/Youtube\/d\u30a2\u30cb\u30e1\u30b9\u30c8\u30a2\/Netflix\/\u30cb\u30b3\u30cb\u30b3\u52d5\u753b\u306e\u73fe\u5728\u306e\u518d\u751f\u6642\u9593\u3092\u5225\u30a6\u30a3\u30f3\u30c9\u30a6\u3067\u6620\u3059\u62e1\u5f35",
"content_scripts": [
{
"matches": [
"https:\/\/www.amazon.co.jp\/*",
"https:\/\/tver.jp\/episodes\/*",
"https:\/\/www.youtube.com\/watch*",
"https:\/\/animestore.docomo.ne.jp\/animestore\/sc_d_pc*",
"https:\/\/www.netflix.com\/*",
"https:\/\/www.twitch.tv\/*",
"https:\/\/www.nicovideo.jp\/watch\/*"
],
"run_at": "document_end",
"js": [
"content_scripts.js"
]
}
],
"background": {
"scripts": [
"event.js"
],
"persistent": false
},
"permissions": [
"contextMenus",
"https:\/\/raw.githubusercontent.com\/patioglass\/*",
"http:\/\/18.176.90.189\/*"
],
"web_accessible_resources": [
"adjustimer-loader.js"
],
"icons": {
"16": "img\/icons\/icon16.png",
"48": "img\/icons\/icon48.png",
"128": "img\/icons\/icon128.png"
}
} | |