Center Pages

Align pages to the center of your screen.

Center Pages란 무엇입니까?

Center Pages은(는) Felix Meyer-Wolters에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Align pages to the center of your screen."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        ## Description

If you use a wide screen you may have encountered websites with long endless lines across the whole width of your screen or websites which align to the very left side of your screen so close to the border that it hurts. For such websites you can use Center-Pages. Center-Pages simply adds a margin to the sides, which you can increase/decrease via two buttons. 


## Open Source

Center-Pages is Open-Source Software. The source code can be found at: https://github.com/feluxe/Center-Pages


## Known Issues

The extension API does not allow for a clean implementation of this feature. Center-Pages is able to narrow down a lot of pages, but it doesn't work for all.

## New in version 1.2.1

* Add alignment buttons (left, center, right).
* Cleanup UI.

## New in version 1.1.0

* Remember margin sizes: Center-Pages now remembers the margin sizes, so that you have to set them only once for each website.

* Use simpler method to apply margins: Center-Pages now uses a simpler less conflicting method to apply the margins.                    

확장 프로그램 기본 정보

이름 Center Pages Center Pages
ID ooebgplbpddoedbkdgkebgjidllhcfae
공식 URL https://chromewebstore.google.com/detail/center-pages/ooebgplbpddoedbkdgkebgjidllhcfae
설명 Align pages to the center of your screen.
파일 크기 15.19 KB
설치 횟수 768
현재 버전 1.2.1
최근 업데이트 2020-10-02
출시 날짜 2019-06-19
평점 3.00/5 총 10 개의 평점
개발자 Felix Meyer-Wolters
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/feluxe/Center-Pages
도움말 페이지 URL https://github.com/feluxe/Center-Pages
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Center Pages",
    "short_name": "center pages",
    "description": "Align pages to the center of your screen.",
    "version": "1.2.1",
    "author": "Felix Meyer-Wolters",
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "aligner.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab"
    ]
}