- Remove executable permissions from configuration files (.editorconfig, .env.example, .gitignore) - Remove executable permissions from documentation files (README.md, LICENSE, SECURITY.md) - Remove executable permissions from web assets (HTML, CSS, JS files) - Remove executable permissions from data files (JSON, SQL, YAML, requirements.txt) - Remove executable permissions from source code files across all apps - Add executable permissions to Python
36 lines
1.2 KiB
JavaScript
36 lines
1.2 KiB
JavaScript
// Content script for AITBC Wallet Firefox extension
|
|
(function() {
|
|
// Inject the wallet API into the page
|
|
const script = document.createElement('script');
|
|
script.src = chrome.runtime.getURL('injected.js');
|
|
script.onload = function() {
|
|
this.remove();
|
|
};
|
|
(document.head || document.documentElement).appendChild(script);
|
|
|
|
// Create a port to background script
|
|
const port = chrome.runtime.connect({ name: "aitbc-wallet" });
|
|
|
|
// Listen for messages from the injected script
|
|
window.addEventListener('message', function(event) {
|
|
// Only accept messages from our own window
|
|
if (event.source !== window) return;
|
|
|
|
if (event.data.type && event.data.type === 'AITBC_WALLET_REQUEST') {
|
|
// Forward the request to the background script
|
|
port.postMessage(event.data);
|
|
}
|
|
});
|
|
|
|
// Listen for responses from background script
|
|
port.onMessage.addListener(function(response) {
|
|
// Send the response back to the page
|
|
window.postMessage({
|
|
type: 'AITBC_WALLET_RESPONSE',
|
|
id: response.id,
|
|
result: response.result,
|
|
error: response.error
|
|
}, '*');
|
|
});
|
|
})();
|