Inspect and view changes in 일본어학습 번역도우미 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "일본어학습 번역도우미",
"version": "0.4",
"description": "마우스로 선택한 일본어 텍스트를 한국어로 번역해주는 확장 프로그램. 구글번역, 파파고번역, 네이버사전 연결",
"author": "crazyj7@gmail.com",
"homepage_url": "https://crazyj.tistory.com/",
"permissions": [
"storage",
"commands",
"activeTab"
],
"commands": {
"open-dictionary": {
"suggested_key": {
"default": "Alt+S"
},
"description": "단어 사전 검색창 열기"
}
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
}
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"code.js"
]
}
],
"icons": {
"16": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
},
"background": {
"service_worker": "background.js"
}
}