This file contains hidden or 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
| const fetch = require('node-fetch'); | |
| const qs = require('querystring'); | |
| const low = require('lowdb') | |
| const FileSync = require('lowdb/adapters/FileSync') | |
| const db = low(new FileSync('tracks.json', { | |
| serialize: (obj) => JSON.stringify(obj), | |
| deserialize: (data) => JSON.parse(data) | |
| })) | |
| db.defaults({ tracks: [] }).write() |
This file contains hidden or 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
| @-moz-document url-prefix("https://www.youtube.com/") { | |
| .ytd-thumbnail-overlay-resume-playback-renderer[style="width: 100%;"] { | |
| position: relative; | |
| } | |
| .ytd-thumbnail-overlay-resume-playback-renderer[style="width: 100%;"]:after { | |
| position: absolute; | |
| bottom: 0; | |
| box-sizing: border-box; | |
| width: 100%; |
This file contains hidden or 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
| :root { | |
| --style-color: #282c34; | |
| --style-color-alt: #1d1f24; | |
| --sale-color: #97c37c; | |
| --headline-color: #4aa4ed; | |
| --visited-color: #c678dd; | |
| --link-color: var(--headline-color); | |
| --max-width: 1200px; | |
| } |
OlderNewer