mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
8df8f81df7
* deprecate extensionizer for webextension-polyfill * fix tests * remove extensionizer * fix browser windows api calls * fix broken on firefox * fix getAcceptLanguages call * update more browser apis that are now promisified * remove unnecessary console error ignoring in e2e tests
41 lines
1.5 KiB
JavaScript
41 lines
1.5 KiB
JavaScript
import querystring from 'querystring';
|
|
import PortStream from 'extension-port-stream';
|
|
import browser from 'webextension-polyfill';
|
|
import createRandomId from '../../shared/modules/random-id';
|
|
import { setupMultiplex } from './lib/stream-utils';
|
|
import { getEnvironmentType } from './lib/util';
|
|
import ExtensionPlatform from './platforms/extension';
|
|
|
|
document.addEventListener('DOMContentLoaded', start);
|
|
|
|
function start() {
|
|
const hash = window.location.hash.substring(1);
|
|
const suspect = querystring.parse(hash);
|
|
|
|
const newIssueLink = document.getElementById('new-issue-link');
|
|
const newIssueUrl = `https://github.com/MetaMask/eth-phishing-detect/issues/new`;
|
|
const newIssueParams = `?title=[Legitimate%20Site%20Blocked]%20${encodeURIComponent(
|
|
suspect.hostname,
|
|
)}&body=${encodeURIComponent(suspect.href)}`;
|
|
newIssueLink.href = `${newIssueUrl}${newIssueParams}`;
|
|
|
|
global.platform = new ExtensionPlatform();
|
|
|
|
const extensionPort = browser.runtime.connect({
|
|
name: getEnvironmentType(),
|
|
});
|
|
const connectionStream = new PortStream(extensionPort);
|
|
const mx = setupMultiplex(connectionStream);
|
|
const backgroundConnection = mx.createStream('controller');
|
|
const continueLink = document.getElementById('unsafe-continue');
|
|
continueLink.addEventListener('click', () => {
|
|
backgroundConnection.write({
|
|
jsonrpc: '2.0',
|
|
method: 'safelistPhishingDomain',
|
|
params: [suspect.hostname],
|
|
id: createRandomId(),
|
|
});
|
|
window.location.href = suspect.href;
|
|
});
|
|
}
|