Chaos Extension

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

Chaos Extensionとは何ですか?

Chaos Extensionはliquidwaterによって開発されたChromeの拡張機能で、その主な機能は「A fun little extension that activates a random effect on a site after a certain amount of time.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Chaos Extension拡張機能のCRXファイルをダウンロード

Chaos Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Chaos Extension Chaos Extension
ID cgmfbilofeaolhngpbebgaceiieingbf
公式URL https://chromewebstore.google.com/detail/chaos-extension/cgmfbilofeaolhngpbebgaceiieingbf
説明 A fun little extension that activates a random effect on a site after a certain amount of time.
ファイルサイズ 171 KB
インストール数 20
現在のバージョン 2.1
最終更新日 2023-03-15
公開日 2021-11-22
開発者 liquidwater
Eメール [email protected]
支払い方法 free
対応言語 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": [
                ""
            ]
        }
    ]
}