Files
electron/spec/fixtures/extensions/custom-protocol/extension/content_script.js
2026-03-11 13:41:37 +01:00

6 lines
183 B
JavaScript

/* global chrome */
chrome.runtime.sendMessage({ text: 'hello from content script' }, (response) => {
if (!response || !response.text) return;
document.title = response.text;
});