android13/external/autotest/client/site_tests/policy_DisableScreenshots/Screenshooter/content.js

6 lines
150 B
JavaScript

chrome.runtime.onMessage.addListener((msg, sender, sendResponse) => {
if (msg.text === 'title') {
sendResponse(document.title);
}
});