new icons and default popup
watch the emoji movie 💩
This commit is contained in:
parent
276c08d355
commit
2c60532199
BIN
icon19.png
Normal file
BIN
icon19.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
BIN
icon38.png
Normal file
BIN
icon38.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.1 KiB |
|
@ -11,7 +11,15 @@
|
||||||
"64": "icon64.png",
|
"64": "icon64.png",
|
||||||
"96": "icon96.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": [
|
"permissions": [
|
||||||
"*://*/*",
|
"*://*/*",
|
||||||
"webRequest",
|
"webRequest",
|
||||||
|
|
45
popup.html
Normal file
45
popup.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user