OrangeMonkey

Lightweight Userscript manager. Provides userscripts support for Chromium browsers

OrangeMonkey란 무엇입니까?

OrangeMonkey은(는) exten.helper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Lightweight Userscript manager. Provides userscripts support for Chromium browsers"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

OrangeMonkey 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        OrangeMonkey is a lightweight userscript manager. Fork of the popular Violentmonkey extension with enhanced functionality and updated design.

OrangeMonkey is used to run called userscripts. Using them, you can, for example, make a dark theme for your favorite site.

Features:
- Ability to make backups by saving your entire gallery in a zip archive
- Installing userjs by link

- Large userjs gallery available and search through it

- Convenient one-click script switching

- All GM_ * functions available



Changelog:
- v1.0.2 - Updated popup                    

확장 프로그램 기본 정보

이름 OrangeMonkey OrangeMonkey
ID ekmeppjgajofkpiofbebgcbohbmfldaf
공식 URL https://chromewebstore.google.com/detail/orangemonkey/ekmeppjgajofkpiofbebgcbohbmfldaf
설명 Lightweight Userscript manager. Provides userscripts support for Chromium browsers
파일 크기 687 KB
설치 횟수 2,905,938
현재 버전 1.0.6
최근 업데이트 2023-08-22
출시 날짜 2021-03-09
평점 3.09/5 총 196 개의 평점
개발자 exten.helper
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OrangeMonkey",
    "version": "1.0.6",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "default_locale": "en",
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "__MSG_extName__",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "page": "background\/index.html"
    },
    "options_page": "options\/index.html",
    "content_scripts": [
        {
            "js": [
                "injected.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "",
        "webRequest",
        "webRequestBlocking",
        "notifications",
        "downloads",
        "storage",
        "unlimitedStorage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}