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文件

下载Center Pages扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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