Oily Monkey

Rock with injecting user script but simpler!

Qu'est-ce que Oily Monkey ?

Oily Monkey est une extension Chrome développée par 阿尔贝鲁, et sa fonction principale est "Rock with injecting user script but simpler!".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Oily Monkey

Téléchargez les fichiers d'extension Oily Monkey 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

                        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                    

Informations de Base sur l'Extension

Nom Oily Monkey Oily Monkey
ID oajcemihjdjpmjkocdgikhlmlifkkgni
URL Officiel https://chromewebstore.google.com/detail/oily-monkey/oajcemihjdjpmjkocdgikhlmlifkkgni
Description Rock with injecting user script but simpler!
Taille du Fichier 183 KB
Nombre d'Installations 52
Version Actuelle 0.0.7
Dernière Mise à Jour 2024-01-02
Date de Publication 2023-08-20
Évaluation 5.00/5 Total 3 Évaluations
Développeur 阿尔贝鲁
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/alchemy-works/oily-monkey
URL de la Page d'Aide https://github.com/alchemy-works/oily-monkey
Langues Prises en Charge 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"
    }
}