Skip to content

Commit

Permalink
📝 Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
CodFrm committed Nov 23, 2022
1 parent e7a5f20 commit 3f768c7
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

[开发文档](https://docs.scriptcat.org/docs/dev/)尽力完善中,因为是参考油猴的设计,与油猴脚本相通的地方很多,就算你使用其它油猴管理器,你也可以参考脚本猫的文档来开发!

如果开发文档有什么错误,或者你想进行补全,你可以点击下方的`在 GitHub 上编辑此页``pull request`给我们.
如果开发文档有什么错误,或者你想进行补全,你可以点击下方的`编辑此页`进行修改.

### 安装扩展

Expand All @@ -60,7 +60,8 @@

### 交流

[Telegram](https://t.me/scriptscat)
- [Telegram](https://t.me/scriptscat)
- [油猴中文网](https://bbs.tampermonkey.net.cn/)

## License
本项目使用GPLv3协议开源, 请遵守协议规定.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scriptcat",
"version": "0.10.2",
"version": "0.10.3",
"description": "脚本猫,一个可以执行用户脚本的浏览器扩展,万物皆可脚本化,让你的浏览器可以做更多的事情!",
"author": "CodFrm",
"license": "GPLv3",
Expand Down
2 changes: 1 addition & 1 deletion src/app/const.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const ExtVersion = "0.10.2";
export const ExtVersion = "0.10.3";

export const ExtServer = "https://ext.scriptcat.org/";

Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "ScriptCat",
"version": "0.10.2",
"version": "0.10.3",
"author": "CodFrm",
"description": "脚本猫,一个用户脚本管理器,支持后台脚本、定时脚本、页面脚本,可编写脚本每天帮你自动处理事务.",
"options_ui": {
Expand Down
1 change: 0 additions & 1 deletion src/runtime/background/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,6 @@ export default class Runtime extends Manager {
if (!script) {
return;
}
console.log(script);
if (
script.status !== SCRIPT_STATUS_ENABLE &&
script.runStatus !== "running"
Expand Down

0 comments on commit 3f768c7

Please sign in to comment.