diff --git a/package.json b/package.json index 6ff701f..d4e2ae4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "adjust-figma-toolbelt", - "version": "1.0.5", + "version": "1.0.6", "private": true, "author": "Palm Civet", "repository": "https://github.com/palmcivet/adjust-figma-toolbelt", diff --git a/vite.config.js b/vite.config.js index 0b5e60a..7c4db0a 100644 --- a/vite.config.js +++ b/vite.config.js @@ -4,20 +4,21 @@ import pkg from "./package.json"; const BANNER = `/* eslint-disable */ // ==UserScript== -// @name ${pkg.name} -// @name:zh-CN ${pkg.name} -// @namespace ${pkg.repository} -// @version ${pkg.version} -// @license ${pkg.license} -// @author ${pkg.author} -// @updateURL https://palmcivet.github.io/${pkg.repository}/main.js -// @description ${pkg.name} is a versatile script designed to enhance your Figma experience by allowing you to reposition the toolbelt with ease. -// @match https://www.figma.com/design/* -// @grant GM_setValue -// @grant GM_getValue -// @grant GM_addStyle -// @grant GM_registerMenuCommand -// @grant GM_unregisterMenuCommand +// @name ${pkg.name} +// @name:zh-CN ${pkg.name} +// @namespace ${pkg.repository} +// @version ${pkg.version} +// @license ${pkg.license} +// @author ${pkg.author} +// @updateURL https://palmcivet.github.io/${pkg.repository}/main.js +// @description ${pkg.name} is a versatile script designed to enhance your Figma experience by allowing you to reposition the toolbelt with ease. +// @description:zh-CN ${pkg.name} 是一个用于增强 Figma 体验的脚本,可以轻松地将工具栏调整到想要的位置。 +// @match https://www.figma.com/design/* +// @grant GM_setValue +// @grant GM_getValue +// @grant GM_addStyle +// @grant GM_registerMenuCommand +// @grant GM_unregisterMenuCommand // ==/UserScript==`; export default defineConfig({