let's do this now so i don't forget

This commit is contained in:
David Ralph 2019-01-18 22:54:15 +00:00
parent 78c1d70eca
commit 5681b1c142
4 changed files with 19 additions and 20 deletions

View File

@ -21,22 +21,22 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width'>
<title>New Tab</title>
<link href="./assets/css/index.css" rel="stylesheet">
<link href='./assets/css/index.css' rel='stylesheet'>
</head>
<body>
<div class="greeting animated fadeInUp"></div>
<div class='greeting animated fadeInUp'></div>
<time class="animated fadeInUp"></time>
<time class='animated fadeInUp'></time>
<div class="quote animated fadeInUp">
<div class='quote animated fadeInUp'>
<blockquote></blockquote>
@ -46,6 +46,6 @@
</body>
<script src="./assets/js/index.js"></script>
<script src='./assets/js/index.js'></script>
</html>

View File

@ -3,11 +3,10 @@
"name": "Mue",
"version": "0.1",
"browser_action": {
"default_icon": "./assets/img/icon.png"
"default_icon": "./assets/img/icon.png"
},
"chrome_url_overrides": {
"newtab": "index.html"
"newtab": "index.html"
},
"runs_offline": true
}
}

View File

@ -3,12 +3,12 @@
"name": "Mue",
"version": "0.1",
"browser_action": {
"default_icon": "./assets/img/icon.png"
"default_icon": "./assets/img/icon.png"
},
"chrome_url_overrides": {
"newtab": "index.html"
"newtab": "index.html"
},
"chrome_settings_overrides": {
"homepage": "index.html"
"homepage": "index.html"
}
}
}

View File

@ -3,12 +3,12 @@
"name": "Mue",
"version": "0.1",
"browser_action": {
"default_icon": "./assets/img/icon.png"
"default_icon": "./assets/img/icon.png"
},
"background": {
"scripts": ["./assets/js/background-opera.js"]
"scripts": ["./assets/js/background-opera.js"]
},
"permissions": [
"tabs"
]
"permissions": [
"tabs"
]
}