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": "Quick Snap",
"version": "3.1.0",
"description": "Quick Snap: Capture screenshots, upload them in google drive seamlessly.",
"permissions": [
"activeTab",
"scripting",
"storage",
"identity",
"desktopCapture"
],
"oauth2": {
"client_id": "805828812560-enjbr67o7jplvgibgqe6jpelrvnlki83.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/drive.file"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-script.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"host_permissions": [
"<all_urls>",
"https:\/\/drive.google.com\/*",
"https:\/\/*.google.com\/*",
"https:\/\/*.googleapis.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "index.html"
},
"icons": {
"16": "assets\/icon.png",
"32": "assets\/icon.png",
"48": "assets\/icon.png",
"128": "assets\/icon.png"
},
"web_accessible_resources": [
{
"resources": [
"loading.html"
],
"matches": [
"<all_urls>"
],
"extension_ids": [
"*"
]
}
]
}