1
0
Fork 0

folder structure

This commit is contained in:
Lukas Winkler 2017-07-08 13:03:13 +02:00
parent 7523c955e8
commit eac8d9dd78
9 changed files with 7 additions and 7 deletions

View file

@ -3,7 +3,7 @@
"name": "Piwik Checker",
"description": "__MSG_extention_description__",
"version": "0.1",
"devtools_page": "devtools.html",
"devtools_page": "views/devtools.html",
"permissions": [
"webRequest",
"webRequestBlocking",
@ -13,7 +13,7 @@
],
"background": {
"scripts": [
"background.js"
"js/background.js"
]
},
"icons": {
@ -28,12 +28,12 @@
"32": "images/icon32.png"
},
"default_title": "Piwik Checker",
"default_popup": "popup.html"
"default_popup": "views/popup.html"
},
"content_scripts": [
{
"js": [
"inject.js"
"js/inject.js"
],
"matches": [
"*://*/*"

View file

@ -1,7 +1,7 @@
<!doctype html>
<html>
<head>
<script src="devtools.js"></script>
<script src="../js/devtools.js"></script>
</head>
<body>
</body>

View file

@ -1,6 +1,6 @@
<html>
<head>
<script src="panel.js"></script>
<script src="../js/panel.js"></script>
</head>
<body>
<h2>DevTools panel</h2>

View file

@ -1,6 +1,6 @@
<html>
<head>
<script src="popup.js"></script>
<script src="../js/popup.js"></script>
</head>
<body>
<h2 id="text"></h2>