38 lines
909 B
JSON
38 lines
909 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "내차는언제타냐 - 지재권 검색 확장 (컨텍스트 메뉴)",
|
|
"version": "1.2",
|
|
"description": "드래그한 텍스트를 우클릭 → '지재권 검색'으로 MarkInfo 검색을 수행하고 결과를 툴팁으로 표시합니다.",
|
|
"permissions": [
|
|
"contextMenus",
|
|
"storage",
|
|
"notifications",
|
|
"alarms",
|
|
"activeTab"
|
|
],
|
|
"host_permissions": [
|
|
"https://markinfo.kr/*",
|
|
"http://146.56.101.199:8000/*"
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"],
|
|
"run_at": "document_end"
|
|
}
|
|
],
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": "icon.png"
|
|
},
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": ["bannedWords.html", "bannedWords.js"],
|
|
"matches": ["<all_urls>"]
|
|
}
|
|
]
|
|
}
|