Chrome Quirks

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

Что такое Chrome Quirks?

Chrome Quirks - это расширение Chrome, разработанное Paul Krishnamurthy, и его основная функция - "A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Chrome Quirks

Скачайте файлы расширений 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'"
}