Oily Monkey

Rock with injecting user script but simpler!

Oily Monkey là gì?

Oily Monkey là một tiện ích mở rộng Chrome được phát triển bởi 阿尔贝鲁, và tính năng chính của nó là "Rock with injecting user script but simpler!".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Oily Monkey 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

                        Rock with injecting user script but simpler!

This extension allows users to easily inject user scripts into the target page. Users can use regular expressions to match the URL of the target page and set the script to be injected. When the extension starts running, the script will be injected every time the target page is opened.

Users can manage multiple rule configurations, but only one configuration will actually take effect in the end

Docs: https://github.com/alchemy-works/oily-monkey                    

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

Tên Oily Monkey Oily Monkey
ID oajcemihjdjpmjkocdgikhlmlifkkgni
URL Chính Thức https://chromewebstore.google.com/detail/oily-monkey/oajcemihjdjpmjkocdgikhlmlifkkgni
Mô tả Rock with injecting user script but simpler!
Kích Thước Tệp 183 KB
Số Lần Cài Đặt 52
Phiên Bản Hiện Tại 0.0.7
Cập Nhật Lần Cuối 2024-01-02
Ngày Phát Hành 2023-08-20
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển 阿尔贝鲁
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/alchemy-works/oily-monkey
URL Trang Trợ Giúp https://github.com/alchemy-works/oily-monkey
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Oily Monkey",
    "version": "0.0.7",
    "description": "Rock with injecting user script but simpler!",
    "homepage_url": "https:\/\/github.com\/alchemy-works\/oily-monkey",
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "scripting",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "user_script.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "action": {
        "default_title": "Oily Monkey",
        "default_icon": "icon-64.png"
    },
    "icons": {
        "48": "icon-256.png"
    }
}