Quickfix CSS Editor

Quickly tweak and fix website CSS. Publish the fixes to your live website in no time.

Quickfix CSS Editor là gì?

Quickfix CSS Editor là một tiện ích mở rộng Chrome được phát triển bởi 201 Created AB, và tính năng chính của nó là "Quickly tweak and fix website CSS. Publish the fixes to your live website in no time.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Quickfix CSS Editor

Tải xuống các tệp mở rộng Quickfix CSS Editor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        When you need a quickfix or tweak on any website. 
Use quickfix to easily adjust, add or delete CSS without having to upload it or deploy it. Quickfix is a really easy way to edit CSS in Google Chrome. It automatically saves your fix per domain and you can easily toggle the fix on and off.

Perfect for fixing layout bugs really quickly. Never wait for the next deploy cycle to get your changes out there. Edit your site in realtime.

The idea was born out of frustration from having worked with a UX/UI team that were eager to fix the over all styling of a big project. It took way too much time to implement the fixes and foremost discussing the changes, so instead the team was handed Quickfix to change the appearance them selfs. A major success for the project and the look and feel of it - all thanks to the Quickfix CSS editor.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Quickfix CSS Editor Quickfix CSS Editor
ID nfebnkiihbkhjjeomdjjmeafdkdepjbe
URL Chính Thức https://chromewebstore.google.com/detail/quickfix-css-editor/nfebnkiihbkhjjeomdjjmeafdkdepjbe
Mô tả Quickly tweak and fix website CSS. Publish the fixes to your live website in no time.
Kích Thước Tệp 354 KB
Số Lần Cài Đặt 394
Phiên Bản Hiện Tại 0.5.1
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Đánh Giá 4.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển 201 Created AB
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.quickfix.io
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quickfix CSS Editor",
    "short_name": "Quickfix",
    "version": "0.5.1",
    "description": "Quickly tweak and fix website CSS. Publish the fixes to your live website in no time.",
    "homepage_url": "http:\/\/www.quickfix.io\/",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "page": "quickfix.html"
    },
    "browser_action": {
        "default_title": "Quickfix",
        "default_icon": "icon48_1.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/*",
        "contextMenus",
        "storage",
        "clipboardWrite",
        "clipboardRead"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "css": [
                "data\/chrome\/css\/editor.css",
                "data\/shared\/icons\/pe-icon-7-stroke.css"
            ],
            "js": [
                "data\/chrome\/port-wrapper.js",
                "data\/chrome\/quickfix-chrome.js",
                "data\/shared\/libs\/jquery-2.1.1.js",
                "data\/shared\/overlay.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "editor.html",
        "data\/shared\/icons\/pe-icon-7-stroke.css",
        "data\/shared\/icons\/Pe-icon-7-stroke.ttf",
        "frame.html"
    ],
    "manifest_version": 2
}