Mizkif Updates

Receive updates letting you know when Mizkif goes live or changes games.

Vad är Mizkif Updates?

Mizkif Updates är en Chrome-tillägg utvecklad av guacsenpai, och dess huvudfunktion är "Receive updates letting you know when Mizkif goes live or changes games.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Mizkif Updates-förlängningens CRX-fil

Ladda ner Mizkif Updates-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Mizkif Updates allows you to receive up to date information about Mizkif. The extension will allow you to see if he is live, what category he is in, the latest tweet, and receive notifications any time Mizkif goes live or changes categories on Twitch.                    

Grundläggande Information om Tillägg

Namn Mizkif Updates Mizkif Updates
ID fjpncgabcdlhpmlcedjjdlbbembakoao
Officiell webbadress https://chromewebstore.google.com/detail/mizkif-updates/fjpncgabcdlhpmlcedjjdlbbembakoao
Beskrivning Receive updates letting you know when Mizkif goes live or changes games.
Filstorlek 1.03 MB
Antal Installationer 2,005
Aktuell Version 1.2.0
Senast Uppdaterad 2023-02-17
Publiceringsdatum 2022-05-23
Betyg 4.33/5 Totalt 316 Betyg
Utvecklare guacsenpai
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mizkif Updates",
    "description": "Receive updates letting you know when Mizkif goes live or changes games.",
    "version": "1.2.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/*.otkdata.com\/*"
    ],
    "permissions": [
        "storage",
        "notifications",
        "alarms"
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "\/images\/mizkif_icon16.png",
            "32": "\/images\/mizkif_icon32.png",
            "48": "\/images\/mizkif_icon48.png",
            "128": "\/images\/mizkif_icon128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "matches": [
                "https:\/\/*.twitch.tv\/mizkif"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "\/images\/mizkif_icon16.png",
        "32": "\/images\/mizkif_icon32.png",
        "48": "\/images\/mizkif_icon48.png",
        "128": "\/images\/mizkif_icon128.png"
    },
    "options_ui": {
        "open_in_tab": false,
        "page": "options.html"
    }
}