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": "탑존포인트",
"description": "이 툴은 탑존포인트 플러그인입니다. 탑존포인트와 연동하여 알림을 받으실 수 있습니다.",
"action": {
"default_popup": "popup.html"
},
"version": "1.0.3",
"icons": {
"16": "img/topzone_point-16.png",
"128": "img/topzone_point-128.png"
},
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"https://point.topzone.co.kr/*",
"https://www.coupang.com/*"
],
"css": [
"css/bootstrap-min.css",
"css/style.css"
],
"js": [
"js/jquery-1.7.2.js",
"js/env.js"
],
"run_at": "document_end"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"host_permissions": [
"https://www.topzone.co.kr/*",
"https://point.topzone.co.kr/*",
"https://www.naver.com/*",
"https://www.coupang.com/*"
],
"permissions": [
"tabs",
"cookies",
"activeTab"
],
"web_accessible_resources": [
{
"resources": [
"js/jquery-1.7.2.js"
],
"matches": [
"<all_urls>"
]
}
]
}