#8 peter
On ten kod neni dlouhy, ale uz jsem na to prisel, volam to v zanorem javascript filu a tam ten eventlistener uz nefugnuje
dle manifestu mam nastaven inject.js a ten podstrci dalsi javascript content.js do stranky. Já náslouchal v tom content.js namísto v tom inject.js. Kod jsem presunul do inject js a tam už to funguje.
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"run_at": "document_idle",
"js": ["js/inject.js"],
"all_frames": true
}
],
"web_accessible_resources" : ["js/content.js"],
"background": {
"scripts": ["background.js"]
},
Díky