FirefoxBar / userscript

Greasemonkey 脚本
https://team.firefoxcn.net/#userscripts
96 stars 15 forks source link
userscript

用户脚本列表

开发说明

使用NPM开发

基本说明

使用样式

编译工具内置了CSS Module支持。因此,你可以直接编写CSS文件,并且不需要担心样式冲突的问题。但注意在meta.yml中申请GM_addStyle权限。

首先新建一个CSS,例如src/index.css,写入以下内容:

.my-button {
  color: red;
}

在你的脚本中,可以这样使用:

import { locals } from './index.css';

const button = document.createElement('button');
button.className = locals['my-button'];