I am trying to make a Chrome extension. My goal is to do the following:
- To run a certain javascript when a button or link with specific id is clicked.
- That button or link with speicific id could be on any website.
My code looks really simple but I am not sure where I am missing. Will the jquery not work this way in chrome extension? Is there any equivalent code in plain javascript?
manifest.json
{
"name": "Handle a button click",
"version": "1.1",
"background": { "scripts": ["background.js"] },
"permissions": [
"tabs"
],
"browser_action": {
"name": "click to handle"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["jquery-1.9.0.min.js"]
}
],
"manifest_version": 2
}
background.js
$(document).ready(function(){
$("#my_submit").click(function(){
alert("yo");
});
}
Thank You
UPDATE AFter debugging for background.js I am seeing "Uncaught ReferenceError: $ is not defined" , jQuery file is not getting included? or why ?
#my_submit? – kidwon Jan 17 at 12:32manifest.jsonif it is a static file it might be blocked from the browser if it's directly addresses within the OS with no proxy server . – kidwon Jan 17 at 12:36