grepolis-bot/content.js

9 lines
329 B
JavaScript
Raw Permalink Normal View History

2017-11-05 04:18:36 +01:00
let idInjection = document.createElement('script');
idInjection.innerHTML = 'let extensionId = "' + chrome.runtime.id + '";';
document.head.appendChild(idInjection);
2017-11-05 04:18:36 +01:00
let scriptInjection = document.createElement('script');
scriptInjection.src = chrome.runtime.getURL('injection.js');
document.head.appendChild(scriptInjection);