{
"manifest_version": 2,
"name": "Green Way Cheat",
"version": "1.0",
"description": "A simple addon for cheating in green-way.com.ua",
"icons": {
"48": "icons/green-way-48.png"
},
"applications": {
"gecko": {
"id": "green-way-cheater@merc.com",
"strict_min_version": "45.0"
}
},
"permissions": [ "activeTab", "tabs" ],
"browser_action": {
"default_icon": "icons/green-way-48.png",
"default_title": "Green Way Cheat"
},
"content_scripts": [
{
"matches": [ "https://green-way.com.ua/*" ],
"js": [ "green-way.js" ]
}
]
}
// Выполняется
document.body.style.border = "5px solid yellow";
// Что-то глючит
browser.browserAction.onClicked.addListener(() => {
alert("Cheat!");
document.body.style.border = "5px solid red";
});
// Не выполняется
document.body.style.border = "5px solid blue";
{
"manifest_version": 2,
"name": "Green Way Cheat",
"version": "1.0",
"description": "A simple addon for cheating in green-way.com.ua",
"icons": {
"48": "icons/green-way-48.png"
},
"applications": {
"gecko": {
"id": "green-way-cheater@merc.com",
"strict_min_version": "45.0"
}
},
"permissions": [ "activeTab", "tabs" ],
"browser_action": {
"default_icon": "icons/green-way-48.png",
"default_title": "Green Way Cheat"
},
"content_scripts": [
{
"matches": [ "https://green-way.com.ua/*" ],
"js": [ "content.js" ]
}
],
"background": {
"scripts": [ "bg.js" ]
}
}
function getActiveTab()
{
return browser.tabs.query({active: true, currentWindow: true});
}
function cheatMain()
{
getActiveTab().then((tabs) => {
browser.tabs.sendMessage(tabs[0].id, { command: "cheat" } );
});
}
browser.browserAction.onClicked.addListener(cheatMain);
function cheatHere()
{
alert("Cheat!");
}
browser.runtime.onMessage.addListener(cheatHere);