mirror of
https://github.com/zombieFox/nightTab.git
synced 2025-02-17 02:30:48 +01:00
[feature] asking internet strangers for coffee
This commit is contained in:
parent
db0e51505b
commit
c8a67af631
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "nightTab",
|
||||
"version": "4.31.0",
|
||||
"version": "4.32.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "nightTab",
|
||||
"version": "4.31.0",
|
||||
"version": "4.32.0",
|
||||
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
@ -149,6 +149,7 @@
|
||||
<button class="menu-nav-button control-menu-theme button" tabindex="-1">Theme</button>
|
||||
<button class="menu-nav-button control-menu-background button" tabindex="-1">Background</button>
|
||||
<button class="menu-nav-button control-menu-data button" tabindex="-1">Data</button>
|
||||
<button class="menu-nav-button control-menu-coffee button" tabindex="-1">Coffee</button>
|
||||
<button class="menu-nav-button control-menu-nightTab button" tabindex="-1">nightTab</button>
|
||||
</div>
|
||||
<div class="menu-nav-area-close">
|
||||
@ -2098,6 +2099,26 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="menu-content-area menu-content-area-coffee is-hidden">
|
||||
<div class="menu-item">
|
||||
<div class="menu-item-header">
|
||||
<h1 class="menu-item-header-text">Coffee for fuel</h1>
|
||||
</div>
|
||||
<div class="menu-item-form">
|
||||
<div class="form-wrap">
|
||||
<p>nightTab is free, appreciation is welcome in the form of coffee!</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="form-wrap">
|
||||
<a href="https://www.buymeacoffee.com/zombieFox" class="button button-large px-4 py-3">
|
||||
<img src="https://cdn.buymeacoffee.com/buttons/bmc-new-btn-logo.svg" class="mr-2" alt="Buy me a coffee">
|
||||
<span class="button-text">Buy me a coffee</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
@ -48,6 +48,12 @@ var control = (function() {
|
||||
func: function() {
|
||||
menu.nav(this.element, helper.e(".menu-content-area-data"));
|
||||
}
|
||||
}, {
|
||||
element: helper.e(".control-menu-coffee"),
|
||||
type: "button",
|
||||
func: function() {
|
||||
menu.nav(this.element, helper.e(".menu-content-area-coffee"));
|
||||
}
|
||||
}, {
|
||||
element: helper.e(".control-menu-nightTab"),
|
||||
type: "button",
|
||||
|
@ -1,6 +1,6 @@
|
||||
var version = (function() {
|
||||
|
||||
var current = "4.31.0";
|
||||
var current = "4.32.0";
|
||||
|
||||
var name = "Naughty Goose";
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "nightTab",
|
||||
"short_name": "nightTab",
|
||||
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
|
||||
"version": "4.31.0",
|
||||
"version": "4.32.0",
|
||||
"manifest_version": 2,
|
||||
"chrome_url_overrides": {
|
||||
"newtab": "index.html"
|
||||
|
Loading…
Reference in New Issue
Block a user