Skip to content

Commit

Permalink
Make extension directory less cluttered
Browse files Browse the repository at this point in the history
  • Loading branch information
szhu committed May 1, 2019
1 parent b55fd3f commit 95c1835
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
8 changes: 0 additions & 8 deletions extension/background.html

This file was deleted.

File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions extension/manifest.json
Expand Up @@ -9,19 +9,19 @@
"tabs"
],
"background": {
"page": "background.html",
"page": "page-background.html",
"persistent": false
},
"options_page": "options.html",
"options_page": "page-options.html",
"options_ui": {
"page": "options.html",
"page": "page-options.html",
"chrome_style": true
},
"browser_action": {
"default_title": "Pushpin"
},
"icons": {
"24": "icon24.png",
"48": "icon48.png"
"24": "img/icon24.png",
"48": "img/icon48.png"
}
}
8 changes: 8 additions & 0 deletions extension/page-background.html
@@ -0,0 +1,8 @@
<!DOCTYPE html>
<html>
<head>
<title>Background</title>
<script src="js/base.js" type="module"></script>
<script src="js/background.js" type="module"></script>
</head>
</html>
4 changes: 2 additions & 2 deletions extension/options.html → extension/page-options.html
Expand Up @@ -29,8 +29,8 @@
flex-grow: 1;
}
</style>
<script src="base.js" type="module"></script>
<script src="options.js" type="module"></script>
<script src="js/base.js" type="module"></script>
<script src="js/options.js" type="module"></script>
</head>

<body class="stretch">
Expand Down

0 comments on commit 95c1835

Please sign in to comment.