Chaos Extension

A fun little extension that activates a random effect on a site after a certain amount of time.

Qu'est-ce que Chaos Extension ?

Chaos Extension est une extension Chrome développée par liquidwater, et sa fonction principale est "A fun little extension that activates a random effect on a site after a certain amount of time.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Chaos Extension

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

                        This extension was inspired by the GTA Chaos Mods made by Lordmau5 and Pongo1231. This extension activates a random effect on a site after a certain amount of time.

In the extension options, you can choose which effects you want to get and which ones you don't want to get. You can also change how long it takes for a new effect to activate.

Possible Seizure Warning: I've checked and I'm pretty sure everything's fine, but if you suffer from epilepsy and an effect or something becomes an issue, then immediately click off the tab and disable the effect that's causing problems.                    

Informations de Base sur l'Extension

Nom Chaos Extension Chaos Extension
ID cgmfbilofeaolhngpbebgaceiieingbf
URL Officiel https://chromewebstore.google.com/detail/chaos-extension/cgmfbilofeaolhngpbebgaceiieingbf
Description A fun little extension that activates a random effect on a site after a certain amount of time.
Taille du Fichier 171 KB
Nombre d'Installations 20
Version Actuelle 2.1
Dernière Mise à Jour 2023-03-15
Date de Publication 2021-11-22
Développeur liquidwater
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chaos Extension",
    "version": "2.1",
    "description": "A fun little extension that activates a random effect on a site after a certain amount of time.",
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": ".\/options\/options.html",
        "open_in_tab": false
    },
    "action": {
        "default_icon": ".\/icons\/ce_16.png"
    },
    "icons": {
        "16": ".\/icons\/ce_16.png",
        "32": ".\/icons\/ce_32.png",
        "48": ".\/icons\/ce_48.png",
        "128": ".\/icons\/ce_128.png"
    },
    "background": {
        "service_worker": ".\/background\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/content\/content.js"
            ],
            "css": [
                ".\/content\/content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content\/content.css"
            ],
            "matches": [
                ""
            ]
        }
    ]
}