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 هو إضافة Chrome تم تطويرها بواسطة Nick Chirico، والميزة الرئيسية لها هي "This simple chrome extension toggles the sidebar on Reddit to reclaim some space the sidebar wastes. To toggle the sidebar click…".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Reddit-Sidebar-Hider

قم بتنزيل ملفات الامتداد Reddit-Sidebar-Hider بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}