This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
• GitHub Actions: Added EXTENSION_ENV to manage builds for dev, staging, and production. • Manifests: Renamed dev manifest to “[Development] Mocksi Lite” and updated production manifest for branding and security. • Vite Config: Enhanced to pick the right manifest based on EXTENSION_ENV.
- Loading branch information
Showing
5 changed files
with
76 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"action": { | ||
"default_icon": { | ||
"32": "mocksi-icon.png" | ||
} | ||
}, | ||
"background": { | ||
"service_worker": "src/pages/background/index.ts", | ||
"type": "module" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"js": ["src/pages/content/mocksi-extension.tsx"], | ||
"matches": ["http://*/*", "https://*/*", "<all_urls>"] | ||
} | ||
], | ||
"content_security_policy": { | ||
"extension_pages": "object-src 'none'; child-src https://nest-auth-ts-merge.onrender.com; frame-src https://nest-auth-ts-merge.onrender.com; script-src 'self'" | ||
}, | ||
"description": "https://www.mocksi.ai", | ||
"externally_connectable": { | ||
"matches": ["https://nest-auth-ts-merge.onrender.com/*"] | ||
}, | ||
"icons": { | ||
"128": "mocksi-logo.png" | ||
}, | ||
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtdeTUTUuHZx1xSvDuISF7wJP8nEPwW4vP8zTkdfdtb/1wM0JJ7XFeUHSIiq8l4Cs6/2f8tpK6MspeD7WhwuFWFHA2GWKoLSP0keuuBAhUFKrfISlNwFaNLX5LRkLSZQnr0ujIznvEuRZaXydIYR1e9pdhYTIcp2ToHW4CI02FUBtJVUUVeKGDiKKlKUrxwGtt1ecGZwVrQ1t7dj3DLrKguw1bONtoczFT3cCs9oVYg4l8frzlyI6xfsX8ynd4F+xS6+gYQ3aJBj7phAWHGAxbVRxTAzpzXRkb9A3ne31Ysjy4uYF9x7fK6NvDj/cm+EEfGDb3VmyXvOa3zeerXtdmwIDAQAB", | ||
"manifest_version": 3, | ||
"name": "[Staging] Mocksi Lite: Next", | ||
"permissions": [ | ||
"activeTab", | ||
"background", | ||
"cookies", | ||
"downloads", | ||
"debugger", | ||
"scripting", | ||
"storage", | ||
"tabs", | ||
"webNavigation", | ||
"webRequest" | ||
], | ||
"web_accessible_resources": [ | ||
{ | ||
"matches": [], | ||
"resources": ["mocksi-icon.png", "mocksi-logo.png"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters