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
官方網址 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"
    }
}