Oily Monkey

Rock with injecting user script but simpler!

什么是Oily Monkey?

Oily Monkey是由阿尔贝鲁开发的Chrome扩展程序,该扩展的主要功能是“Rock with injecting user script but simpler!”。

扩展截图

screenshot
screenshot
screenshot

下载Oily Monkey扩展crx文件

下载Oily Monkey扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Oily Monkey Oily Monkey
ID oajcemihjdjpmjkocdgikhlmlifkkgni
官方URL https://chromewebstore.google.com/detail/oily-monkey/oajcemihjdjpmjkocdgikhlmlifkkgni
简介 Rock with injecting user script but simpler!
文件大小 183 KB
安装次数 52
当前版本 0.0.7
更新时间 2024-01-02
上架时间 2023-08-20
评分 5.00/5 共3次评分
开发者 阿尔贝鲁
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/alchemy-works/oily-monkey
帮助页面URL https://github.com/alchemy-works/oily-monkey
支持的语言 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"
    }
}