Updated Firefox manifest and popup.

This commit is contained in:
2025-10-27 11:49:15 -04:00
parent b8fb1ea9cb
commit cfa58e299f
2 changed files with 20 additions and 11 deletions

View File

@@ -1,9 +1,12 @@
{ {
"manifest_version": 2, "manifest_version": 2,
"name": "SimplyReports SQL Extractor", "name": "SiReS Ex - SimplyReports SQL Extractor",
"version": "1.0", "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.", "description": "Grab the SQL query used in a SimplyReports results page and copy it to the clipboard or save it to a file.",
"author": "Daniel Messer",
"homepage_url": "https://cyberpunklibrarian.nohost.me/gitea/Public/SiReS-Ex",
"permissions": [ "permissions": [
"activeTab", "activeTab",
"clipboardWrite", "clipboardWrite",
@@ -26,17 +29,23 @@
"default_popup": "popup.html", "default_popup": "popup.html",
"default_title": "Extract SQL Query", "default_title": "Extract SQL Query",
"default_icon": { "default_icon": {
"16": "icon-16.png", "16": "icon16.png",
"32": "icon-32.png", "32": "icon32.png",
"48": "icon-48.png", "48": "icon48.png",
"128": "icon-128.png" "128": "icon128.png"
} }
}, },
"icons": { "icons": {
"16": "icon-16.png", "16": "icon16.png",
"32": "icon-32.png", "32": "icon32.png",
"48": "icon-48.png", "48": "icon48.png",
"128": "icon-128.png" "128": "icon128.png"
},
"applications": {
"gecko": {
"strict_min_version": "48.0"
}
} }
} }

View File

@@ -123,7 +123,7 @@
</head> </head>
<body> <body>
<div class="header"> <div class="header">
<h3>SQL Query Extractor</h3> <h3>SiReS Ex - SimplyReports SQL Extractor</h3>
</div> </div>
<div id="status" class="status" style="display: none;"></div> <div id="status" class="status" style="display: none;"></div>