소스 검색

Allow extension to run on all urls

jherve 2 년 전
부모
커밋
e1922ea18d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      extension/manifest.json

+ 1 - 1
extension/manifest.json

@@ -10,7 +10,7 @@
   },
   "content_scripts": [
     {
-      "matches": ["*://*/*"],
+      "matches": ["<all_urls>"],
       "js": ["content.js"]
     }
   ],