Webpage Formatter

This extension allows user changing webpage rendering

Webpage Formatterとは何ですか?

Webpage Formatterはhttps://www.swiftformatter.comによって開発されたChromeの拡張機能で、その主な機能は「This extension allows user changing webpage rendering」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Webpage Formatter拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This extension has the following functions:
1. Allows user to customize Javascript code to run during web page loading. You could do anything to the web pages you select.
2. By default, an image popup Auto Run is included. You could add your own Auto Run or download from https://www.swiftformatter.com/webpage.

The project is open sourced at https://github.com/huiliangzhang/WebpageFormatter

Version 1.1:
   Change Autorun settings parameters box to be scrollable.
Version 1.2:
   Show version on UI. Clicking version will go to chrome store page.
Version 1.3:
   Activate function is called by event chrome.tabs.onUpdated.
Version 1.4:
   Keep previous settings values when upgrading Auto Run.
Version 1.5
   Show Auto Run version.
Version 1.6
   Click Auto Run version will check the latest version.
Version 1.7
   Add some tips for version checking.
Version 1.8
   Fix an issue in settings                    

拡張機能の基本情報

名前 Webpage Formatter Webpage Formatter
ID oghkhbjjhjmlonobjmkinpeaiadoolfa
公式URL https://chromewebstore.google.com/detail/webpage-formatter/oghkhbjjhjmlonobjmkinpeaiadoolfa
説明 This extension allows user changing webpage rendering
ファイルサイズ 284 KB
インストール数 26
現在のバージョン 1.8
最終更新日 2018-09-20
公開日 2018-09-19
開発者 https://www.swiftformatter.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.swiftformatter.com/webpage
ヘルプページのURL https://www.facebook.com/swiftformatter/
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Webpage Formatter",
    "description": "This extension allows user changing webpage rendering",
    "version": "1.8",
    "background": {
        "scripts": [
            "bgSettings.js"
        ]
    },
    "browser_action": {
        "default_icon": "on.png",
        "default_popup": "pop\/index.html",
        "default_title": "Tool for changing webpage rendering"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "main.css"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "pop\/*",
        "*.js",
        "*.css"
    ]
}