oca-ocb-core/odoo-bringout-oca-ocb-mail/mail/push-to-talk-extension/content.js
Ernad Husremovic 2d3ee4855a 19.0 vanilla
2026-03-09 09:30:27 +01:00

10 lines
363 B
JavaScript

/* global chrome */
// https://chromewebstore.google.com/detail/discuss-push-to-talk/mdiacebcbkmjjlpclnbcgiepgifcnpmg
const EXT_ID = "mdiacebcbkmjjlpclnbcgiepgifcnpmg";
chrome.runtime.onMessage.addListener(function (request, sender) {
if (location.origin !== "null" && sender.id === EXT_ID) {
window.postMessage(request, location.origin);
}
});