Inspect and view changes in LVSM 번역기 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",
"name": "LVSM 번역기",
"action": {
"default_icon": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"64": "icons/64.png",
"128": "icons/128.png",
"512": "icons/512.png"
},
"default_popup": "popup.html"
},
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"64": "icons/64.png",
"128": "icons/128.png",
"512": "icons/512.png"
},
"manifest_version": 3,
"version": "0.1.4",
"description": "LVSM 솔루션에서만 사용이 가능합니다.",
"permissions": [
"tabs"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"all_frames": true,
"js": [
"content-script.js"
]
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+Q",
"mac": "MacCtrl+Shift+Q"
},
"description": "팝업 열기"
}
}
}