Upload files to "Pricer Extension"

This commit is contained in:
2026-08-03 20:21:13 +00:00
commit 01b1fd581e
4 changed files with 181 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{
"manifest_version": 3,
"name": "Hardware Pricing Bridge",
"version": "0.1.0",
"permissions": ["activeTab", "scripting", "tabs"],
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["https://pricer.thenpsenterprise.com/*"],
"js": ["content.js"]
}
],
"host_permissions": [
"https://pricer.thenpsenterprise.com/*"
],
"browser_specific_settings": {
"gecko": {
"id": "hardware-pricing-bridge@npsstore.com"
}
}
}