-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
60 additions
and
9 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Dashboard</title> | ||
<link rel="shortcut icon" href="https://assets.artivain.com/fav/main/fav.svg"> | ||
|
||
<style type="text/css"> | ||
body, | ||
html { | ||
margin: 0; | ||
padding: 0; | ||
height: 100%; | ||
overflow: hidden; | ||
} | ||
|
||
#content { | ||
position: absolute; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
top: 0px; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div id="content"> | ||
<iframe id="iframe" width="100%" height="100%" frameborder="0" src="https://dashboard.artivain.com"> | ||
Cannot load the newtab page. | ||
</iframe> | ||
</div> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"manifest_version": 2, | ||
"name": "Artivain Newtab", | ||
"version": "1.1", | ||
"name": "Artivain Dashboard", | ||
"version": "2.0", | ||
"description": "A simple new tab extension for Firefox", | ||
"icons": { | ||
"48": "src/icons/artivain.svg" | ||
"48": "icon.svg" | ||
}, | ||
"chrome_url_overrides": { | ||
"newtab": "src/index.html" | ||
"newtab": "index.html" | ||
}, | ||
"chrome_settings_overrides": { | ||
"homepage": "src/index.html" | ||
"homepage": "index.html" | ||
} | ||
} |
Submodule src
deleted from
3a53e2