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": "QuickShot Screenshot Editor",
"version": "1.1",
"description": "Take and edit screenshots with OCR text extraction",
"permissions": [
"activeTab",
"storage"
],
"icons": {
"16": "images\/logo.png",
"48": "images\/logo.png",
"128": "images\/logo.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "Take Screenshot"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*",
"https:\/\/*.youtu.be\/*",
"https:\/\/*.facebook.com\/*",
"https:\/\/*.dailymotion.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"tesseract.min.js",
"tesseract-core.wasm",
"eng.traineddata.gz",
"urd.traineddata.gz",
"ocr_viewer.html",
"ocr_viewer.css",
"ocr_viewer.js"
],
"matches": [
"<all_urls>"
]
}
]
}