Reddit Sidebar Collapser

Hide the Reddit sidebar until you actually need it.

Vad är Reddit Sidebar Collapser?

Reddit Sidebar Collapser är en Chrome-tillägg utvecklad av awswrd, och dess huvudfunktion är "Hide the Reddit sidebar until you actually need it.".

Tilläggsskärmbilder

screenshot

Ladda ner Reddit Sidebar Collapser-förlängningens CRX-fil

Ladda ner Reddit Sidebar Collapser-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Posts with lots of text in reddit can become extremely crowded by the sidebar, especially if you frequently have two windows open side by side. This extension fixes that by adding a widget to the top of the sidebar to collapse and expand it as needed.

If you'd rather have the sidebar still there, but have the option to collapse it, you can change the default behavior in the options page.                    

Grundläggande Information om Tillägg

Namn Reddit Sidebar Collapser Reddit Sidebar Collapser
ID kkbbjempbnpnfmeldlaghacohkcaiind
Officiell webbadress https://chromewebstore.google.com/detail/reddit-sidebar-collapser/kkbbjempbnpnfmeldlaghacohkcaiind
Beskrivning Hide the Reddit sidebar until you actually need it.
Filstorlek 7.68 KB
Antal Installationer 29
Aktuell Version 1.0.3
Senast Uppdaterad 2013-06-20
Publiceringsdatum 2013-06-19
Betyg 2.00/5 Totalt 1 Betyg
Utvecklare awswrd
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit Sidebar Collapser",
    "description": "Hide the Reddit sidebar until you actually need it.",
    "version": "1.0.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.reddit.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ]
}