new icons and default popup

watch the emoji movie 💩
This commit is contained in:
astaar 2017-08-04 15:55:52 +02:00
parent 276c08d355
commit 2c60532199
4 changed files with 54 additions and 1 deletions

BIN
icon19.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
icon38.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -11,7 +11,15 @@
"64": "icon64.png",
"96": "icon96.png"
},
"default_popup": "popup.html",
"page_action": {
"browser_style": true,
"default_icon": {
"19": "icon19.png",
"38": "icon38.png"
},
"default_title": "ClearURLs Add-on",
"default_popup": "popup.html"
},
"permissions": [
"*://*/*",
"webRequest",

45
popup.html Normal file
View File

@ -0,0 +1,45 @@
<!doctype html>
<html>
<head>
<title>ClearURLs Add-on</title>
<style>
body {
overflow: hidden;
margin: 5px;
padding: 5px;
background: #fff;
}
div:first-child {
margin-top: 0px;
}
div {
text-align: center;
padding: 5px 3px;
font-family: sans-serif;
font-size: 1.4em;
width: 110px;
margin-top: 5px;
background: #FFE2BF;
}
div:hover {
background: #FFD19A;
}
#enable {
border: 5px solid #FF8B00;
color: #A43B00;
}
#disable {
border: 5px solid #FF8B00;
color: #A43B00;
}
</style>
<script src="popup.js"></script>
</head>
<body>
<div id="enable"><b>Enable</b></div>
<div id="disable"><b>Disable</b></div><br>
<img src="icon128.png"></img>
</body>
</html>