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

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

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}