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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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'"
}