ScriptCat

脚本猫,一个用户脚本管理器,支持后台脚本、定时脚本、页面脚本,可编写脚本每天帮你自动处理事务.

ScriptCat là gì?

ScriptCat là một tiện ích mở rộng Chrome được phát triển bởi https://docs.scriptcat.org, và tính năng chính của nó là "脚本猫,一个用户脚本管理器,支持后台脚本、定时脚本、页面脚本,可编写脚本每天帮你自动处理事务.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ScriptCat

Tải xuống các tệp mở rộng ScriptCat dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        脚本猫,用于在后台中运行用户脚本.

提供了一个用户脚本的运行框架,可编写crontab类型的任务运行在后台沙盒中,每天通过脚本定时处理事务.可用于自动签到,定时提醒等功能.

### 特性
* 通过沙盒机制确保了用户的安全,用户确定后才会给脚本授予权限.
* 优秀的编辑器,且提供了API的自动补全机制
* 同步的API,让脚本编写更加流畅

### 未来
* 将会更完善后台任务机制
* 提供更多丰富的API
* 完善用户的脚本权限控制

API文档:https://github.com/scriptscat/scriptcat/tree/master/docs

开源地址:https://github.com/scriptscat/scriptcat                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ScriptCat ScriptCat
ID ndcooeababalnlpkfedmmbbbgkljhpjf
URL Chính Thức https://chromewebstore.google.com/detail/scriptcat/ndcooeababalnlpkfedmmbbbgkljhpjf
Mô tả 脚本猫,一个用户脚本管理器,支持后台脚本、定时脚本、页面脚本,可编写脚本每天帮你自动处理事务.
Kích Thước Tệp 3.65 MB
Số Lần Cài Đặt 30,000
Phiên Bản Hiện Tại 0.16.1
Cập Nhật Lần Cuối 2024-02-29
Ngày Phát Hành 2021-03-18
Đánh Giá 4.78/5 Tổng số 23 Đánh Giá
Nhà Phát Triển https://docs.scriptcat.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://docs.scriptcat.org
URL Trang Trợ Giúp https://github.com/scriptscat/scriptcat/issues
URL Trang Chính Sách Bảo Mật https://cx.icodef.com/ys.html
Ngôn Ngữ Được Hỗ Trợ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ScriptCat",
    "version": "0.16.1",
    "author": "CodFrm",
    "description": "\u811a\u672c\u732b,\u4e00\u4e2a\u7528\u6237\u811a\u672c\u7ba1\u7406\u5668,\u652f\u6301\u540e\u53f0\u811a\u672c\u3001\u5b9a\u65f6\u811a\u672c\u3001\u9875\u9762\u811a\u672c,\u53ef\u7f16\u5199\u811a\u672c\u6bcf\u5929\u5e2e\u4f60\u81ea\u52a8\u5904\u7406\u4e8b\u52a1.",
    "options_ui": {
        "page": "src\/options.html",
        "open_in_tab": true
    },
    "default_locale": "zh_CN",
    "icons": {
        "128": "assets\/logo.png"
    },
    "browser_action": {
        "default_popup": "src\/popup.html"
    },
    "background": {
        "page": "src\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "cookies",
        "storage",
        "downloads",
        "webRequest",
        "background",
        "",
        "contextMenus",
        "notifications",
        "clipboardWrite",
        "webRequestBlocking"
    ],
    "sandbox": {
        "pages": [
            "src\/sandbox.html"
        ]
    }
}