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ファイルをダウンロード

Restyler拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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