diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-09-26 18:23:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-26 18:23:57 -0400 |
commit | 247c929bbab6ee51521e4bb1d089ae0a43daca73 (patch) | |
tree | 2c07086c3b51746464925476890ed0ab9a851169 | |
parent | c364714c8188ab1503b53b096a70b1fd5b6b3055 (diff) |
Update document-start.js to only run for docs.google.com (#1964)
* Update document-start.js to only run for docs.google.com
* Update manifest
-rw-r--r-- | dev/data/manifest-variants.json | 5 | ||||
-rw-r--r-- | ext/manifest.json | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/dev/data/manifest-variants.json b/dev/data/manifest-variants.json index 3e3abace..f604d64b 100644 --- a/dev/data/manifest-variants.json +++ b/dev/data/manifest-variants.json @@ -67,9 +67,8 @@ { "run_at": "document_start", "matches": [ - "http://*/*", - "https://*/*", - "file://*/*" + "http://docs.google.com/*", + "https://docs.google.com/*" ], "match_about_blank": true, "all_frames": true, diff --git a/ext/manifest.json b/ext/manifest.json index f69a900b..fc257b9f 100644 --- a/ext/manifest.json +++ b/ext/manifest.json @@ -66,9 +66,8 @@ { "run_at": "document_start", "matches": [ - "http://*/*", - "https://*/*", - "file://*/*" + "http://docs.google.com/*", + "https://docs.google.com/*" ], "match_about_blank": true, "all_frames": true, |