Chrome Quirks

A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!

Chrome Quirksとは何ですか?

Chrome QuirksはPaul Krishnamurthyによって開発されたChromeの拡張機能で、その主な機能は「A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!」です。

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

screenshot
screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        Chrome Quirks is a fun extension that allows you to inject pre-loaded effects or custom CSS onto any webpage you visit. Developers can quickly and easily edit CSS and test ideas out. This extension appeals to the curious and the pranksters who can't help messing with their less tech-savvy friends!

Feel free to kindly leave some ideas for more pre-loaded effects and improvements along with a good rating!

Enjoy this app and share it with your friends!
*Special thanks to Alex Xie for screenshots*                    

拡張機能の基本情報

名前 Chrome Quirks Chrome Quirks
ID bonaodplajkoeboaofhhjbigfhchpehc
公式URL https://chromewebstore.google.com/detail/chrome-quirks/bonaodplajkoeboaofhhjbigfhchpehc
説明 A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!
ファイルサイズ 1.2 MB
インストール数 102
現在のバージョン 1.2
最終更新日 2020-11-19
公開日 2015-05-21
評価 5.00/5 合計 5 レビュー
開発者 Paul Krishnamurthy
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://paulkr.com/
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Quirks",
    "short_name": "CQ",
    "manifest_version": 2,
    "version": "1.2",
    "description": "A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!",
    "homepage_url": "http:\/\/paulkr.com\/",
    "icons": {
        "256": "icons\/icon256.png"
    },
    "background": {
        "scripts": [
            "jquery.js",
            "inject.js"
        ],
        "persistance": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_title": "Chrome Quirks",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "http:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}