diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-28 23:46:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-28 23:46:51 +0000 |
commit | 8314bcba628668c0e1fbbcb7f59f97dd4f070037 (patch) | |
tree | 69aa8c9c2f97601d4e5a7833d88b42f64c8e1bac /manifest.json | |
parent | b793731bfb15662ee6815f8f4b4d5a417b59ea63 (diff) | |
parent | 1a873ce9c3245ad0d397cbf85035889ceb442290 (diff) |
Merge pull request #104 from ueokande/83-run-on-document-loaded
run at document end and run in all urls
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/manifest.json b/manifest.json index 79b9cbc..268dae8 100644 --- a/manifest.json +++ b/manifest.json @@ -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": { |