Reddit-Sidebar-Hider

This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…

Reddit-Sidebar-Hider란 무엇입니까?

Reddit-Sidebar-Hider은(는) Nick Chirico에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…"입니다.

확장 프로그램 스크린샷

screenshot

Reddit-Sidebar-Hider 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click the icon in the chrome extension menu.

Preferences are stored, and used on each Reddit page load.

Source code can be found at https://github.com/kiddico/Reddit-Sidebar-Hider                    

확장 프로그램 기본 정보

이름 Reddit-Sidebar-Hider Reddit-Sidebar-Hider
ID aipfmjljjkiepeocilaillicdohnkehp
공식 URL https://chromewebstore.google.com/detail/reddit-sidebar-hider/aipfmjljjkiepeocilaillicdohnkehp
설명 This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…
파일 크기 18.06 KB
설치 횟수 17
현재 버전 1.4
최근 업데이트 2017-01-07
출시 날짜 2017-01-06
평점 5.00/5 총 1 개의 평점
개발자 Nick Chirico
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kiddico/Reddit-Sidebar-Hider
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit-Sidebar-Hider",
    "version": "1.4",
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/www.reddit.com\/*",
        "http:\/\/www.reddit.com\/*"
    ],
    "icons": {
        "16": "images\/16_icon.png",
        "32": "images\/32_icon.png",
        "64": "images\/64_icon.png",
        "128": "images\/128_icon.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/www.reddit.com\/*",
                "http:\/\/www.reddit.com\/*",
                "http:\/\/np.reddit.com\/*",
                "https:\/\/np.reddit.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "images\/128_icon.png",
        "default_title": "Toggle Reddit Sidebar"
    },
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "matches": [
            "https:\/\/www.reddit.com\/*",
            "http:\/\/www.reddit.com\/*",
            "http:\/\/np.reddit.com\/*",
            "https:\/\/np.reddit.com\/*"
        ]
    },
    "web_accessible_resources": [
        "images\/*.png"
    ]
}