YouTubeに10秒送り・戻し,2倍速をするボタンを追加する
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

20 lines
463 B

{
"manifest_version": 3,
"name": "YT Swift Control",
"version": "1.1",
"description": "10秒スキップ、巻き戻し、再生速度の瞬時切り替えボタンを追加します",
"permissions": ["activeTab"],
"icons": {
"128": "icon.png"
},
"action": {
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": ["https://www.youtube.com/*"],
"js": ["content.js"],
"run_at": "document_idle"
}
]
}