Skip to content

Commit

Permalink
create basis
Browse files Browse the repository at this point in the history
  • Loading branch information
mdmen committed Feb 1, 2018
1 parent 377d840 commit 0cb946f
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 2 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
# ext-manager
Google Chrome extension manager
This app allows you to manage your extensions.
4 changes: 4 additions & 0 deletions css/popup.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

.content {
color: lightblue;
}
Binary file added img/icon-128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icon-48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions js/popup.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

; (function () {

})();
23 changes: 23 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"manifest_version": 2,

"name": "Simple extension manager",
"description": "This app allows you to manage your extensions.",
"version": "0.1",

"icons": {
"16": "img/icon-16x16.png",
"48": "img/icon-48x48.png",
"128": "img/icon-48x48.png"
},

"browser_action": {
"default_icon": "img/icon-32x32.png",
"default_title": "Extension manager",
"default_popup": "popup.html"
},

"permissions": [
"management"
]
}
14 changes: 14 additions & 0 deletions popup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>

<head>
<title>Simple extenstion manager</title>
<link rel="stylesheet" href="css/popup.css">
<script src="js/popup.js"></script>
</head>

<body>
<div id="ex-app"></div>
</body>

</html>

0 comments on commit 0cb946f

Please sign in to comment.