since my Chrome Extension didn't work under Mac I broke the code down and found the problem:
background.js
chrome.browserAction.onClicked.addListener(function(tab){
alert("Goin to");
chrome.tabs.executeScript(tab.id, {file: "script.js"});
});
script.js
$('#Hoster_30').trigger('click');
alert("Clicked");
jQuery is loaded and both alerts are shown, but the click event isn't triggered. It works fine when I directly enter the trigger in the js console on the page and under Windows it also works in the add on.
Here my manifest.json
{
"name": "MacAddon",
"version": "0.1",
"permissions": ["tabs", "http://*/", "https://*/"],
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_title": "MacAddon"
},
"content_scripts": [
{
"matches": ["http://*.kinox.to/*", "http://*.streamcloud.eu/*"],
"js": ["jquery.js"]
}
]
}
http://kinox.to/norhttp://streamcloud.eu/have an element with IDHoster_30. – Rob W Jul 29 '12 at 14:26$('#Hoster_30').data('events').click[0].handlershowed me that the following code is executed: ` getPlayerByMirror(this,'Auto');. Is the problem solved if you directly call this function, withthis` being the element? Since the function is defined in the page, you have to inject the script to test it. See stackoverflow.com/q/… – Rob W Jul 29 '12 at 14:41getPlayerByMirror($('#Hoster_30'), 'Auto')worked. Thanks, I'll use that for now but If anybody has an Idea why the click Event only worked under Windows would be nice – Gumble Jul 29 '12 at 15:13