Sidebar Toggle

Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E

Sidebar Toggleとは何ですか?

Sidebar Toggleはhttps://rahatol.comによって開発されたChromeの拡張機能で、その主な機能は「Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E」です。

拡張機能のスクリーンショット

Sidebar Toggle拡張機能のCRXファイルをダウンロード

Sidebar Toggle拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Clear the arbitrary spaces in pages that are constantly open on your screen. Currently only on pages:

- Reddit
- Wikipedia
- Youtube
- Facebook


I can add more sites on demand.

Note: Because wikipedia pages can be hosted on sites other than wikipedia.org the permissions require you to allow for all pages. I dont do anything other than remove some css elements and this can be seen on the extension code https://github.com/sinanm89/Wiki-NavBar-Toggle                    

拡張機能の基本情報

名前 Sidebar Toggle Sidebar Toggle
ID phedkmlklpciilhmiombagckiidaghje
公式URL https://chromewebstore.google.com/detail/sidebar-toggle/phedkmlklpciilhmiombagckiidaghje
説明 Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command/Ctrl+Shift+E
ファイルサイズ 23.96 KB
インストール数 96
現在のバージョン 0.1.0.1
最終更新日 2017-11-02
公開日 2017-11-01
評価 5.00/5 合計 6 レビュー
開発者 https://rahatol.com
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "permissions": [
        "storage",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "onload.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "fold.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Ctrl+Shift+E"
            }
        }
    },
    "author": "Sinan Midillili",
    "name": "Sidebar Toggle",
    "short_name": "ST",
    "description": "Hide the sidebars on Reddit, Wikipedia, FB and Youtube to save screen-estate. Toggle by clicking on Icon or Command\/Ctrl+Shift+E",
    "version": "0.1.0.1",
    "manifest_version": 2,
    "icons": {
        "16": "fold.png",
        "48": "fold.png",
        "128": "fold.png"
    }
}