From d72db2279efa633654b013e22fd03cc66ba43f8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=83=A1=E9=B9=8F?= <64hp@163.com> Date: Tue, 2 Apr 2019 13:32:24 +0800 Subject: [PATCH] update --- page-action-demo/.idea/modules.xml | 8 + page-action-demo/.idea/page-action-demo.iml | 12 + page-action-demo/.idea/workspace.xml | 184 ++++++++++++++ simple-chrome-plugin-demo/.idea/modules.xml | 8 + .../.idea/simple-chrome-plugin-demo.iml | 12 + simple-chrome-plugin-demo/.idea/workspace.xml | 235 ++++++++++++++++++ simple-chrome-plugin-demo/manifest.json | 2 +- simple-chrome-plugin-demo/popup.js | 3 +- 8 files changed, 462 insertions(+), 2 deletions(-) create mode 100644 page-action-demo/.idea/modules.xml create mode 100644 page-action-demo/.idea/page-action-demo.iml create mode 100644 page-action-demo/.idea/workspace.xml create mode 100644 simple-chrome-plugin-demo/.idea/modules.xml create mode 100644 simple-chrome-plugin-demo/.idea/simple-chrome-plugin-demo.iml create mode 100644 simple-chrome-plugin-demo/.idea/workspace.xml diff --git a/page-action-demo/.idea/modules.xml b/page-action-demo/.idea/modules.xml new file mode 100644 index 0000000..cac70d8 --- /dev/null +++ b/page-action-demo/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/page-action-demo/.idea/page-action-demo.iml b/page-action-demo/.idea/page-action-demo.iml new file mode 100644 index 0000000..24643cc --- /dev/null +++ b/page-action-demo/.idea/page-action-demo.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/page-action-demo/.idea/workspace.xml b/page-action-demo/.idea/workspace.xml new file mode 100644 index 0000000..a40f25a --- /dev/null +++ b/page-action-demo/.idea/workspace.xml @@ -0,0 +1,184 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + false + true + true + + + true + DEFINITION_ORDER + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1554182173495 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/simple-chrome-plugin-demo/manifest.json b/simple-chrome-plugin-demo/manifest.json index 589305c..4ae3618 100755 --- a/simple-chrome-plugin-demo/manifest.json +++ b/simple-chrome-plugin-demo/manifest.json @@ -17,7 +17,7 @@ "content_scripts": [ { - "matches": ["https://www.baidu.com/*"], + "matches": [""], "js": ["content-script.js"] } ], diff --git a/simple-chrome-plugin-demo/popup.js b/simple-chrome-plugin-demo/popup.js index b565905..ab00399 100755 --- a/simple-chrome-plugin-demo/popup.js +++ b/simple-chrome-plugin-demo/popup.js @@ -1 +1,2 @@ -console.log('你好,我是popup!'); \ No newline at end of file + +console.log('你好,我是popup!'); \ No newline at end of file