манифес
{
"name" : "MDK lite",
"version" : "1.0",
"description" : "This is a simple chrome extention",
"manifest_version" : 2,
"permissions": [ "tabs" ],
"browser_action" : {
"default_title" : "test ",
"default_icon" : "images/icon.png",
"default_popup" : "popup.html"
},
"web_accessible_resources": [
"/injected.js"
],
"content_scripts": [
{
"matches": ["http://google.com"],
"js": [ "jquery.js", "background.js" ],
"run_at": "document_end"
}
]
}
popup
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" >
</head>
<script>
alert(1);
</script>
/* пара таблиц*/
javascript отказывается работать, на станице popup пробовал по разному - никак не не работает\
по какой причине так?