OrangeMonkey

Lightweight Userscript manager. Provides userscripts support for Chromium browsers

Qu'est-ce que OrangeMonkey ?

OrangeMonkey est une extension Chrome développée par exten.helper, et sa fonction principale est "Lightweight Userscript manager. Provides userscripts support for Chromium browsers".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension OrangeMonkey

Téléchargez les fichiers d'extension OrangeMonkey au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom OrangeMonkey OrangeMonkey
ID ekmeppjgajofkpiofbebgcbohbmfldaf
URL Officiel https://chromewebstore.google.com/detail/orangemonkey/ekmeppjgajofkpiofbebgcbohbmfldaf
Description Lightweight Userscript manager. Provides userscripts support for Chromium browsers
Taille du Fichier 687 KB
Nombre d'Installations 2,905,938
Version Actuelle 1.0.6
Dernière Mise à Jour 2023-08-22
Date de Publication 2021-03-09
Évaluation 3.09/5 Total 196 Évaluations
Développeur exten.helper
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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'"
}