- timemachine.js: live-detail 응답을 fetch 후킹으로 가로채 timeMachineActive 를 true 로 만들고, live-playback-json 의 DVR 매니페스트로 livePlaybackJson 을 교체해 되감기 UI 와 실제 seek 동작을 살린다. 스트리머가 타임머신을 꺼둔 라이브에서도 동작. - manifest.json: timemachine.js 를 content_scripts 에 추가하고 버전을 1.1.0 으로 올림. name/description 을 다기능에 맞게 갱신. - popup.html: 타임머신 강제 활성화 상태 표시 항목 추가. - README.md: 기능 설명, 설치 방법, 동작 확인 로그, 면책 명시.
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "Chzzk Bypass",
|
|
"version": "1.1.0",
|
|
"manifest_version": 3,
|
|
"description": "치지직(CHZZK) 시청 환경 개선: 1) Mac 위장으로 그리드 없이 1080p 시청, 2) 스트리머가 타임머신을 꺼둔 라이브에서도 되감기 UI 강제 표시.",
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_title": "Chzzk Bypass Status"
|
|
},
|
|
"permissions": [
|
|
"declarativeNetRequest",
|
|
"declarativeNetRequestWithHostAccess"
|
|
],
|
|
"host_permissions": [
|
|
"*://*.naver.com/*",
|
|
"*://*.ncloud.com/*"
|
|
],
|
|
"declarative_net_request": {
|
|
"rule_resources": [
|
|
{
|
|
"id": "rules",
|
|
"enabled": true,
|
|
"path": "rules.json"
|
|
}
|
|
]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"*://chzzk.naver.com/*"
|
|
],
|
|
"js": [
|
|
"content.js",
|
|
"timemachine.js"
|
|
],
|
|
"run_at": "document_start",
|
|
"world": "MAIN"
|
|
}
|
|
]
|
|
} |