Oily Monkey

Rock with injecting user script but simpler!

Co to jest Oily Monkey?

Oily Monkey to rozszerzenie Chrome opracowane przez 阿尔贝鲁, a jego główną funkcją jest „Rock with injecting user script but simpler!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Oily Monkey

Pobierz pliki rozszerzeń Oily Monkey w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Oily Monkey Oily Monkey
ID oajcemihjdjpmjkocdgikhlmlifkkgni
Oficjalny URL https://chromewebstore.google.com/detail/oily-monkey/oajcemihjdjpmjkocdgikhlmlifkkgni
Opis Rock with injecting user script but simpler!
Rozmiar pliku 183 KB
Liczba instalacji 52
Aktualna Wersja 0.0.7
Ostatnia Aktualizacja 2024-01-02
Data Publikacji 2023-08-20
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper 阿尔贝鲁
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/alchemy-works/oily-monkey
Adres URL Strony Pomocy https://github.com/alchemy-works/oily-monkey
Obsługiwane Języki 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"
    }
}