diff --git a/build.py b/build.py index 9ae460e..c316cf2 100644 --- a/build.py +++ b/build.py @@ -37,7 +37,7 @@ def write_manifest(): manifest = json.load(open('src/manifest.json', 'r')) for content_script in manifest['content_scripts']: - content_script['matches'] = [f'*://{match}/*' for match in matches] + content_script['matches'] = [f'*://*.{match}/*' for match in matches] json.dump(manifest, open('src/manifest.json', 'w'), indent=2)