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",
"manifest_version": 3,
"name": "LeetCode GitHub Sync",
"version": "1.1.0",
"description": "Automatically sync your LeetCode submissions to GitHub.",
"permissions": [
"storage",
"notifications"
],
"content_scripts": [
{
"matches": [
"https:\/\/leetcode.com\/submissions\/*"
],
"js": [
"common.js",
"content.js"
]
}
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"options_page": "options.html",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"24": "icons\/icon24.png",
"32": "icons\/icon32.png",
"64": "icons\/icon64.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"24": "icons\/icon24.png",
"32": "icons\/icon32.png",
"64": "icons\/icon64.png",
"128": "icons\/icon128.png"
}
}