feat: decoupling GM_Cookie utility class

This commit is contained in:
2023-03-22 15:45:04 +08:00
parent b9a667a61d
commit fec81b11a3
4 changed files with 64 additions and 60 deletions

View File

@@ -9,14 +9,15 @@ export default defineConfig({
monkey({
entry: 'src/main.tsx',
userscript: {
name: 'Session Magician',
name: 'Cookie Magician',
namespace: 'https://www.imbytecat.com/',
icon: 'https://vitejs.dev/logo.svg',
version: '3.1.0',
description: 'Session Magician & Session Tools & Export/Import Sessions',
version: '3.1.2',
description: 'Cookie Magician & Cookie Tools & Export/Import Cookies',
author: 'imbytecat',
match: ['*://*/*'],
grant: ['GM_registerMenuCommand', 'GM_setClipboard', 'GM_notification'],
grant: ['GM_setClipboard'],
license: 'GPL-3.0-or-later',
$extra: {
grant: ['GM_cookie'],
},