Answer the question
In order to leave comments, you need to log in
Forwarding/handling messages in Opera 11 extensions
After reading Extensions for Opera: Messaging decided to check it out.
Background script (index.html):
<!doctype html>
<html lang="en">
<head>
<script>
window.addEventListener('load', function(){
var button = opera.contexts.toolbar.createItem({ title: 'Send message', icon: 'icons/message.png' })
button.addEventListener('click', function(event) {
var tab = opera.extension.tabs.getFocused();
if (tab)
tab.postMessage({}); // можно попробовать и opera.extension.broadcastMessage({});
}, false);
opera.contexts.toolbar.addItem(button);
}, false);
</script>
</head>
<body>
</body>
</html>
(function () {
var storedLocation = '';
if (opera.extension !== undefined) {
opera.extension.onmessage = function(event){
opera.postError('got message: ' + storedLocation);
};
}
window.opera.addEventListener("BeforeEvent.DOMContentLoaded", function (event) {
storedLocation = window.location.href;
opera.postError('loaded: ' + storedLocation);
}, false);
})()
Answer the question
In order to leave comments, you need to log in
Thanks, but that's not really it.
The problem is that when I send a message to the active tab, it (in 99%) is received by the background script of the frame, and not the main page, as I would like.
At first, I thought that this is because the frame script is executed later and it is he who sets his callback. But using broadcastMessage() shows that both handlers are working.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question