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": "CodeQuest: Save & Track Coding Problems \u2014 LeetCode, CF & More",
"description": "Organize coding problems across platforms into Google Sheets. Auto-populates difficulty and normalized tags.",
"version": "1.3.6",
"permissions": [
"storage",
"activeTab",
"tabs"
],
"host_permissions": [
"https:\/\/codeforces.com\/*",
"https:\/\/leetcode.com\/*",
"https:\/\/www.codechef.com\/*",
"https:\/\/atcoder.jp\/*",
"https:\/\/www.interviewbit.com\/*",
"https:\/\/www.hackerrank.com\/*",
"https:\/\/www.geeksforgeeks.org\/*",
"https:\/\/script.google.com\/*",
"https:\/\/script.googleusercontent.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon48.png",
"48": "icons\/icon48.png",
"128": "icons\/icon48.png"
}
},
"icons": {
"16": "icons\/icon48.png",
"48": "icons\/icon48.png",
"128": "icons\/icon48.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/codeforces.com\/*",
"https:\/\/leetcode.com\/*",
"https:\/\/www.codechef.com\/*",
"https:\/\/atcoder.jp\/*",
"https:\/\/www.interviewbit.com\/*",
"https:\/\/www.hackerrank.com\/*",
"https:\/\/www.geeksforgeeks.org\/*"
],
"js": [
"tagMapper.js",
"content.js"
]
}
],
"options_page": "options.html"
}