I'm trying to create an extension, already wrote a part of the code for the actions are not working, clicking the button nothing happens.
The code I'm going to put is simpler but it does not work either.
.botao {
background-color: brown;
border: none;
color: white;
padding: 15px 25px;
text-align: center;
font-size: 16px;
cursor: pointer;
}
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<form>
<input class="botao" type="button" value="clicar aqui" onclick="window.location.href='http://www.csbr.ga/'" />
</form>
</body>
</html>
Manifest
{
"manifest_version": 2,
"name": "TEST",
"version": "0.1",
"description": "TEST",
"icons": {
"16": "images/16.png"
},
"browser_action": {
"default_popup": "index.html",
"persistent": false
},
"permissions": [
"activeTab",
"http://*/*",
"https://*/*",
]
}