Merge pull request #104 from ueokande/83-run-on-document-loaded

run at document end and run in all urls
This commit is contained in:
Shin'ya Ueoka 2017-10-28 23:46:51 +00:00 committed by GitHub
commit 8314bcba62
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,8 +15,9 @@
"content_scripts": [
{
"all_frames": true,
"matches": [ "http://*/*", "https://*/*" ],
"js": [ "build/content.js" ]
"matches": [ "<all_urls>" ],
"js": [ "build/content.js" ],
"run_at": "document_end"
}
],
"background": {