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 レビュー
開発者 阿尔贝鲁
Eメール [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"
    }
}