electron/lib/renderer/content-scripts-injector.ts

109 lines
3.4 KiB
TypeScript
Raw Normal View History

import { ipcRendererInternal } from '@electron/internal/renderer/ipc-renderer-internal'
import { runInThisContext } from 'vm'
// Check whether pattern matches.
// https://developer.chrome.com/extensions/match_patterns
const matchesPattern = function (pattern: string) {
2016-05-27 02:07:06 +00:00
if (pattern === '<all_urls>') return true
const regexp = new RegExp(`^${pattern.replace(/\*/g, '.*')}$`)
2017-07-10 21:50:59 +00:00
const url = `${location.protocol}//${location.host}${location.pathname}`
return url.match(regexp)
}
2016-05-28 06:37:44 +00:00
// Run the code with chrome API integrated.
const runContentScript = function (this: any, extensionId: string, url: string, code: string) {
const context: { chrome?: any } = {}
require('@electron/internal/renderer/chrome-api').injectTo(extensionId, false, context)
2017-09-17 05:56:22 +00:00
const wrapper = `((chrome) => {\n ${code}\n })`
2016-05-28 06:37:44 +00:00
const compiledWrapper = runInThisContext(wrapper, {
filename: url,
lineOffset: 1,
displayErrors: true
})
return compiledWrapper.call(this, context.chrome)
2016-05-28 06:37:44 +00:00
}
const runAllContentScript = function (scripts: Array<Electron.InjectionBase>, extensionId: string) {
2018-09-13 16:10:51 +00:00
for (const { url, code } of scripts) {
runContentScript.call(window, extensionId, url, code)
}
}
const runStylesheet = function (this: any, url: string, code: string) {
2017-09-17 05:56:22 +00:00
const wrapper = `((code) => {
function init() {
2017-09-17 05:56:22 +00:00
const styleElement = document.createElement('style');
styleElement.textContent = code;
document.head.append(styleElement);
}
document.addEventListener('DOMContentLoaded', init);
2017-09-17 06:09:12 +00:00
})`
const compiledWrapper = runInThisContext(wrapper, {
filename: url,
lineOffset: 1,
2017-09-17 06:09:12 +00:00
displayErrors: true
})
2017-09-17 06:09:12 +00:00
return compiledWrapper.call(this, code)
}
const runAllStylesheet = function (css: Array<Electron.InjectionBase>) {
2018-09-13 16:10:51 +00:00
for (const { url, code } of css) {
runStylesheet.call(window, url, code)
}
}
// Run injected scripts.
// https://developer.chrome.com/extensions/content_scripts
const injectContentScript = function (extensionId: string, script: Electron.ContentScript) {
2017-07-20 18:01:49 +00:00
if (!script.matches.some(matchesPattern)) return
2017-09-17 05:56:22 +00:00
if (script.js) {
const fire = runAllContentScript.bind(window, script.js, extensionId)
if (script.runAt === 'document_start') {
process.once('document-start', fire)
} else if (script.runAt === 'document_end') {
process.once('document-end', fire)
} else {
document.addEventListener('DOMContentLoaded', fire)
2017-07-20 18:24:39 +00:00
}
}
2017-09-17 05:56:22 +00:00
if (script.css) {
const fire = runAllStylesheet.bind(window, script.css)
if (script.runAt === 'document_start') {
process.once('document-start', fire)
} else if (script.runAt === 'document_end') {
process.once('document-end', fire)
} else {
document.addEventListener('DOMContentLoaded', fire)
}
}
}
2016-05-28 07:41:12 +00:00
// Handle the request of chrome.tabs.executeJavaScript.
ipcRendererInternal.on('CHROME_TABS_EXECUTESCRIPT', function (
event: Electron.Event,
senderWebContentsId: number,
requestId: number,
extensionId: string,
url: string,
code: string
) {
2016-05-28 07:41:12 +00:00
const result = runContentScript.call(window, extensionId, url, code)
ipcRendererInternal.sendToAll(senderWebContentsId, `CHROME_TABS_EXECUTESCRIPT_RESULT_${requestId}`, result)
2016-05-28 07:41:12 +00:00
})
// Read the renderer process preferences.
2016-05-27 02:07:06 +00:00
const preferences = process.getRenderProcessPreferences()
if (preferences) {
for (const pref of preferences) {
if (pref.contentScripts) {
for (const script of pref.contentScripts) {
injectContentScript(pref.extensionId, script)
}
2016-05-27 02:07:06 +00:00
}
}
}