MakeAside

make the web pages close to the Browser's side which aligned center, so that we can get more space on our screen.

Co je MakeAside?

MakeAside je rozšíření Chrome vyvinuté Jin Huang, a jeho hlavní funkcí je „make the web pages close to the Browser's side which aligned center, so that we can get more space on our screen.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření MakeAside

Stáhněte si soubory rozšíření MakeAside ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        if you don't like webpage stay in the center of the web browser and leave 2 big white blocks between it. !! U should Try Me  !!

Just click the blue icon in the top-right corner, All contents in the webpage will stand aside. U can use other window cover the rest white space.

Or you can press ctrl+shift+L to do it .

if you have some trouble when use it, Leave me a message and the webpage url.
** update 1.4.0
rebuild everything.
formatting is better than before.

** update 1.3.0
add YoukuAntiADs http://userscripts.org/scripts/review/119622
use BAE CDN to improve download speed.
try to keep sync with raw resource.
you can switch it in options.
THANKS **YoukuAntiADs**

** update 1.2.2
重写代码,优化左对齐的逻辑
相关配置支持在多台机器同步(虽然没啥配置 =_=!)

** update 1.2.1
增加使用通配符"?*"进行url匹配,例如 *.google.com* 将匹配所有包含 .google.com 的url
修复一点点bug

** update 1.2.0
增加简单的url匹配规则,让部分页面自动靠左(下次将支持较复杂的匹配规则等)
增加一组快捷键, ctrl+shift+L (下次将增加自定义快捷键设置)
增强对一些网页的兼容性

** update 1.1.7
增强兼容性

** update 1.1.6
不小心把未完成的功能加进去了。已删除

** update 1.1.5
修复因 chrome 更新带来的 bug
优化代码,对部分类型的网站能够更加准确地判断居中元素
ps.感谢 貘大 给我的指点

** update 1.1.4
增加多语言

** update 1.1.3
增加一些小东西
删除了一些无用代码

** update 1.1.2
增加选项页面
增加设置最小坐边距的设置

** update 1.1.1
小光棍版本                    

Základní Informace o Rozšíření

Název MakeAside MakeAside
ID lkaefblbgicijgpamdlanifmiokhgcie
Oficiální URL https://chrome.google.com/webstore/detail/makeaside/lkaefblbgicijgpamdlanifmiokhgcie
Popis make the web pages close to the Browser's side which aligned center, so that we can get more space on our screen.
Velikost souboru 25.32 KB
Počet instalací 309
Aktuální Verze 1.4.0
Poslední Aktualizace 2013-07-03
Datum Vydání 2013-07-03
Hodnocení 4.45/5 Celkem 11 Hodnocení
Vývojář Jin Huang
Typ Platby free
Webové stránky Rozšíření http://hjin.me/code/732/
Podporované Jazyky en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.4.0",
    "description": "__MSG_extDescription__",
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_title": "__MSG_extTitle__",
        "name": "Aside"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "icons": {
        "16": "images\/icon.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self'; object-src 'self'"
}