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
电子邮箱 [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'"
}