// ==UserScript==
// @license MIT
// @name 简单的青柠起始页优化
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.4.2
// @description 默认去掉青柠起始页的页脚,使用 alt + t 控制搜索框的显示隐藏 使用alt + g切换时钟显示隐藏,变量全局存储,不需要每次打开都关闭或者显示了 alt+b 显示隐藏 B站热搜
// @author Hei
// @match *://limestart.cn/*
// @match *://www.limestart.cn/*
// @grant GM_setClipboard
// @grant unsafeWindow
// @grant GM_xmlhttpRequest
// @grant GM_addStyle
// @grant GM_getResourceText
// @grant GM_getResourceURL
// @connect api.bilibili.com
// @connect at.alicdn.com
// @connect i0.hdslb.com
// @connect *
// @require https://lib.baomitu.com/jquery/1.12.4/jquery.min.js
// @resource css https://at.alicdn.com/t/c/font_4423350_7t2u8i9k77r.css
// ==/UserScript==
(function () {
'use strict';
const indexDBREQ = window.indexedDB.open("limestart", 1) // 数据库名称,版本号
const storeName = 'wallpaper' // 表名
let local_db = null;
indexDBREQ.onupgradeneeded = (event) => {
local_db = event.target.result // 数据库对象
if (local_db.objectStoreNames.includes(storeName)) {
local_db.deleteObjectStore(storeName)
local_db.createObjectStore(storeName)
}
console.log('upgrad-连接到本地limestart数据库')
}
indexDBREQ.onsuccess = (event) => { // 监听数据库创建成功事件
local_db = event.target.result // 数据库对象
console.log('连接到本地limestart数据库')
}
const indexedAction = {
get(storeName, key) {
return new Promise((res) => {
const transaction = local_db.transaction([storeName], "readwrite");
const store = transaction.objectStore(storeName);
const r = store.get(key)
r.onsuccess = (e) => {
res(e.target.result)
}
r.onerror = (e) => {
res(null)
}
})
},
put(val, key) {
return new Promise((res) => {
const transaction = local_db.transaction([storeName], "readwrite");
const store = transaction.objectStore(storeName);
const r = store.put(val, key)
r.onsuccess = (e) => {
res(true)
}
r.onerror = (e) => {
res(false)
}
})
},
delete(key) {
return new Promise((res) => {
const transaction = local_db.transaction([storeName], "readwrite");
const store = transaction.objectStore(storeName);
const r = store.delete(key)
r.onsuccess = (e) => {
res(true)
}
r.onerror = (e) => {
res(false)
}
})
}
}
// 基础依赖
const _mainKey = 'easy_limestart'
const ls = {
set(key, val) {
let easy_limestart_obj = window.localStorage.getItem(_mainKey);
if (!easy_limestart_obj) {
easy_limestart_obj = {}
} else {
easy_limestart_obj = JSON.parse(easy_limestart_obj)
}
easy_limestart_obj[key] = val;
window.localStorage.setItem(_mainKey, JSON.stringify(easy_limestart_obj))
},
get(key, defaultVal = null) {
let easy_limestart_obj = window.localStorage.getItem(_mainKey);
if (!easy_limestart_obj) {
easy_limestart_obj = {}
return defaultVal
} else {
easy_limestart_obj = JSON.parse(easy_limestart_obj)
}
const val = easy_limestart_obj[key];
if (val !== undefined) {
try {
return JSON.parse(val)
} catch (err) {
return defaultVal || val
}
}
return defaultVal
}
}
let showBilibili = false;
let isBliLoading = false;
//B站热搜请求
function requestBiApi() {
const getRow = async (show_name, keyword, icon) => {
const src = await (new Promise((res) => {
if (icon) {
GM_xmlhttpRequest({
url: icon,
method: 'get',
responseType: 'blob',
onload: (data) => {
var blob = new Blob([data.response], { type: 'image/png' });
const fileReader = new FileReader()
fileReader.onload = (e) => {
res(e.target.result)
}
// readAsDataURL
fileReader.readAsDataURL(blob)
}
})
} else {
res(null)
}
}))
const img_html = src ? `` : ''
return `