[...]
"content_scripts": [
{
"matches": ["https://myurl/*", "https://myurl/*/*"],
"js": ["content_script.js" ],
"all_frames": true
}
],
"web_accessible_resources": ["script.js"]
[...]var s = document.createElement('script');
s.src = chrome.extension.getURL('script.js');
(document.head||document.documentElement).appendChild(s);
s.onload = function() {
var s2 = document.createElement('script');
s2.src = chrome.extension.getURL('script.js');
(document.head||document.documentElement).appendChild(s2);
s2.onload = function() {
var s3 = document.createElement('script');
s3.src = chrome.extension.getURL('script.js');
(document.head||document.documentElement).appendChild(s3);
};
};--
You received this message because you are subscribed to the Google Groups "Chromium-extensions" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-extens...@chromium.org.
To post to this group, send email to chromium-...@chromium.org.
Visit this group at http://groups.google.com/a/chromium.org/group/chromium-extensions/.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chromium-extensions/e400e463-ef5f-442a-b268-0502cb692ab0%40chromium.org.