Restyler

A devtool extension for easy restyling of any webpage

Restyler란 무엇입니까?

Restyler은(는) asimen1에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A devtool extension for easy restyling of any webpage"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Restyler 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Restyler lets you change the appearance of any webpage with an easy to use interface.
Ongoing changes in the page are automatically observed so new styling is always taken into account.

Perfect for testing out design changes or rebranding on an existing page!

★ Modify any CSS attribute value such as font, color, margins, etc...
★ Apply styling rule to all elements in the page or to a specific set (using selectors).
★ Edit any text content in the page.
★ Share your styling rules as a config or export to CSS.                    

확장 프로그램 기본 정보

이름 Restyler Restyler
ID ofkkcnbmhaodoaehikkibjanliaeffel
공식 URL https://chromewebstore.google.com/detail/restyler/ofkkcnbmhaodoaehikkibjanliaeffel
설명 A devtool extension for easy restyling of any webpage
파일 크기 1.13 MB
설치 횟수 522
현재 버전 1.2.1
최근 업데이트 2019-06-24
출시 날짜 2019-06-24
평점 4.79/5 총 14 개의 평점
개발자 asimen1
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/asimen1/restyler
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Restyler",
    "description": "A devtool extension for easy restyling of any webpage",
    "version": "1.2.1",
    "minimum_chrome_version": "30.0",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "devtools_page": "html\/devtool\/devtoolLoader.html",
    "background": {
        "scripts": [
            "js\/background\/background.min.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "stylesheets\/content_scripts\/content_script.css"
            ],
            "js": [
                "js\/content_scripts\/vendor\/jquery-3.1.0.js",
                "js\/content_scripts\/core\/restyler.min.js",
                "js\/content_scripts\/content_script.min.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "",
        "tabs"
    ]
}