Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"version": "0.0.9",
"manifest_version": 3,
"default_locale": "en",
"permissions": [
"storage"
],
"icons": {
"128": "image\/icon_128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "__MSG_action_default_title__"
},
"content_scripts": [
{
"matches": [
"https:\/\/leetcode.cn\/problems\/*",
"https:\/\/leetcode.com\/problems\/*"
],
"js": [
"js\/jquery-1.11.3.min.js",
"js\/show_score.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"json\/score.json",
"json\/level.json"
],
"matches": [
"<all_urls>"
]
}
]
}