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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}