- timemachine.js 제거 및 manifest content_scripts 에서 빼냄 스트리머가 끈 타임머신은 서버 측 DVR 프로비저닝이 없어 cosmetic 우회만 가능했고, 클라이언트-사이드 상태 불일치가 치지직 비정상 접근 감지를 트리거해 "허용되지 않는 비정상적 접근입니다" 팝업 + 계정 제재 위험이 실측으로 확인되어 제거. - content.js 의 navigator.userAgentData override 에 getHighEntropyValues / toJSON 까지 일관된 Mac 값으로 구현. 기존엔 메서드가 없어서 nlog.js 가 Uncaught TypeError: e.getHighEntropyValues is not a function 을 던졌음. - popup.html 의 "타임머신: 강제 활성화" 상태 항목 제거. - README 를 현재 동작 (그리드 우회만) 에 맞춰 재작성, 타임머신 미지원 사유 명시. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
45 lines
922 B
JSON
45 lines
922 B
JSON
{
|
|
"name": "Chzzk Bypass",
|
|
"version": "1.2.0",
|
|
"manifest_version": 3,
|
|
"description": "치지직(CHZZK) 시청 환경 개선: Mac 위장으로 그리드 없이 1080p 시청.",
|
|
"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"
|
|
],
|
|
"run_at": "document_start",
|
|
"world": "MAIN"
|
|
}
|
|
]
|
|
}
|