Skip to content

Instantly share code, notes, and snippets.

View Ocyss's full-sized avatar

Ocyss_04 Ocyss

View GitHub Profile
@Ocyss
Ocyss / gist:006665b6dbf59cc62d7a7f1b0edfb378
Created June 26, 2025 07:09
扩展storage手动同步.js
await (async()=>{
const l=await chrome.storage.local.get(),s=await chrome.storage.sync.get();
return `await chrome.storage.local.set(${JSON.stringify(l)});await chrome.storage.sync.set(${JSON.stringify(s)});`
})();