Files
SiReS-Ex/Chrome/Code/manifest.json
2025-10-27 11:30:19 -04:00

41 lines
785 B
JSON

{
"manifest_version": 3,
"name": "SimplyReports SQL Extractor",
"version": "1.0",
"description": "Grab the SQL query used in a SimplyReports results page and copy it to the clipboard or save it to a file.",
"permissions": [
"activeTab",
"downloads"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "Extract SQL Query",
"default_icon": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
}