1
0
mirror of https://gitee.com/bitdance-team/chrome-extension synced 2025-10-08 00:45:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

鼠标样式开关

This commit is contained in:
xiao_io
2022-02-05 13:43:37 +08:00
parent 38ba246ae0
commit bb72d2423d
6 changed files with 223 additions and 16 deletions

View File

@@ -7,14 +7,15 @@ $(function() {
// 每次改变开关状态时刷新页面使功能及时生效
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
console.log('click');
location.reload();
sendResponse('Reload page');
})
// 控制功能是否开启
chrome.storage.sync.get('clickState', function(budget) {
chrome.storage.sync.get('clickState3', function(budget) {
// 得到按钮开关状态
if (budget.clickState == false || budget.clickState == undefined) {
if (budget.clickState3 == false || budget.clickState3 == undefined) {
// console.log('click功能启动');
var hearts = [];