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": "1.0.0",
"description": "음성 인식 기술을 활용하여 Chrome 브라우저를 손쉽게 제어할 수 있는 도구",
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"side_panel": {
"default_path": "sidePanel/sidePanel.html"
},
"permissions": [
"tabs",
"activeTab",
"scripting",
"storage",
"sidePanel"
],
"host_permissions": [
"*://*/*"
],
"action": {
"default_popup": "popup/popup.html"
},
"background": {
"service_worker": "background/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content/content.js"
],
"type": "module",
"run_at": "document_idle"
}
]
}