51 lines
1.0 KiB
JSON
51 lines
1.0 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "SiReS Ex - 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.",
|
|
|
|
"author": "Daniel Messer",
|
|
"homepage_url": "https://cyberpunklibrarian.nohost.me/gitea/Public/SiReS-Ex",
|
|
|
|
"permissions": [
|
|
"activeTab",
|
|
"clipboardWrite",
|
|
"downloads"
|
|
],
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"]
|
|
}
|
|
],
|
|
|
|
"background": {
|
|
"scripts": ["background.js"],
|
|
"persistent": false
|
|
},
|
|
|
|
"browser_action": {
|
|
"default_popup": "popup.html",
|
|
"default_title": "Extract SQL Query",
|
|
"default_icon": {
|
|
"16": "icon-16.png",
|
|
"32": "icon-32.png",
|
|
"48": "icon-48.png",
|
|
"128": "icon-128.png"
|
|
}
|
|
},
|
|
|
|
"icons": {
|
|
"16": "icon-16.png",
|
|
"32": "icon-32.png",
|
|
"48": "icon-48.png",
|
|
"128": "icon-128.png"
|
|
},
|
|
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"strict_min_version": "58.0"
|
|
}
|
|
}
|
|
} |