fix(extension): adapt DOM observer to Native Agent panel and Tailwind migration (v0.5.21)

This commit is contained in:
Variet Worker
2026-04-09 21:56:29 +09:00
parent d2023321bd
commit 75762964e3
10 changed files with 171 additions and 10 deletions

20
scratch_parse3.py Normal file
View File

@@ -0,0 +1,20 @@
import json
try:
with open(r'C:\Users\Variet-Worker\.gemini\antigravity\bridge\deep-inspect-result.json', 'r', encoding='utf-8', errors='ignore') as f:
data = json.load(f)
print("SEARCHING FOR CHAT TEXT IN DUMP...")
found = False
with open(r'C:\Users\Variet-Worker\.gemini\antigravity\bridge\deep-inspect-result.json', 'r', encoding='utf-8', errors='ignore') as f:
raw_text = f.read()
if '스스로 만들고 스스로' in raw_text:
print("YES! The chat text IS in the raw JSON dump!")
found = True
elif 'Variet' in raw_text:
print("Found Variet in dump.")
else:
print("Chat text not found in raw dump.")
except Exception as e:
print(f'Error reading JSON: {e}')