Center Pages

Align pages to the center of your screen.

Center Pages क्या है?

Center Pages Felix Meyer-Wolters द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Align pages to the center of your screen."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Center Pages एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}