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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}