Added Chrome extension

This commit is contained in:
2025-10-27 11:30:19 -04:00
parent fc26e4f568
commit b8fb1ea9cb
10 changed files with 534 additions and 0 deletions

40
Chrome/Code/manifest.json Normal file
View File

@@ -0,0 +1,40 @@
{
"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"
}
}