Skip to content

Commit

Permalink
Minor fixes for firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
tprouvot committed Sep 27, 2024
1 parent e16c539 commit 980da93
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 0 deletions.
76 changes: 76 additions & 0 deletions addon/manifest-firefox.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"name": "Salesforce Inspector Reloaded",
"description": "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.",
"version": "1.240",
"version_name": "1.24",
"icons": {
"128": "icon128.png"
},
"applications": {
"gecko": {
"id": "salesforceinspector@reloaded",
"strict_min_version": "60.0"
}
},
"permissions": [
"https://*.salesforce.com/*",
"https://*.salesforce-setup.com/*",
"https://*.force.com/*",
"https://*.cloudforce.com/*",
"https://*.visualforce.com/*",
"https://*.sfcrmapps.cn/*",
"https://*.sfcrmproducts.cn/*",
"https://*.salesforce.mil/*",
"https://*.force.mil/*",
"https://*.cloudforce.mil/*",
"https://*.visualforce.mil/*",
"https://*.crmforce.mil/*",
"https://*.force.com.mcas.ms/*",
"cookies"
],
"content_scripts": [
{
"matches": [
"https://*.salesforce.com/*",
"https://*.salesforce-setup.com/*",
"https://*.visual.force.com/*",
"https://*.vf.force.com/*",
"https://*.lightning.force.com/*",
"https://*.cloudforce.com/*",
"https://*.visualforce.com/*",
"https://*.sfcrmapps.cn/*",
"https://*.sfcrmproducts.cn/*",
"https://*.salesforce.mil/*",
"https://*.visual.force.mil/*",
"https://*.vf.force.mil/*",
"https://*.lightning.force.mil/*",
"https://*.cloudforce.mil/*",
"https://*.visualforce.mil/*",
"https://*.crmforce.mil/*",
"https://*.lightning.force.com.mcas.ms/*",
"https://*.builder.salesforce-experience.com/*"
],
"all_frames": true,
"css": ["button.css", "inspect-inline.css"],
"js": ["button.js", "inspect-inline.js"]
}
],
"background": {
"scripts": ["background.js"]
},
"web_accessible_resources": [
"popup.html",
"data-export.html",
"data-import.html",
"inspect.html",
"metadata-retrieve.html",
"explore-api.html",
"rest-explore.html",
"limits.html",
"field-creator.html",
"options.html",
"streaming.html"
],
"incognito": "spanning",
"manifest_version": 2
}
1 change: 1 addition & 0 deletions addon/rest-explore.css
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ input[type="checkbox"] {
}

input.query-control{
width: -moz-available;
width: -webkit-fill-available;
}
textarea:not([readonly]):focus,
Expand Down

0 comments on commit 980da93

Please sign in to comment.