Reddit+

Reddit+

Vad är Reddit+?

Reddit+ är en Chrome-tillägg utvecklad av @kennydude, och dess huvudfunktion är "Reddit+".

Tilläggsskärmbilder

screenshot

Ladda ner Reddit+-förlängningens CRX-fil

Ladda ner Reddit+-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

                        Reddit+ is an extension which improves Reddit.

Currently it does

- Makes Reddit mobile-friendly (works on Firefox for Android, Chrome does not have extensions at the time of writing)
- Preview
- Preview of imgur etc

Code is available on GitHub -- https://github.com/kennydude/redditplus                    

Grundläggande Information om Tillägg

Namn Reddit+ Reddit+
ID djinnjnojhiahjgjahicofaakpmpdfhc
Officiell webbadress https://chrome.google.com/webstore/detail/reddit+/djinnjnojhiahjgjahicofaakpmpdfhc
Beskrivning Reddit+
Filstorlek 75.52 KB
Antal Installationer 13
Aktuell Version 1.4
Senast Uppdaterad 2013-05-19
Publiceringsdatum 2013-05-19
Utvecklare @kennydude
Betalningssätt free
Tilläggswebbplats https://github.com/kennydude/redditplus
Stödda Språk en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit+",
    "version": "1.4",
    "manifest_version": 2,
    "description": "Reddit+",
    "background": {
        "persistent": false,
        "scripts": [
            "bg.js"
        ]
    },
    "permissions": [
        "*:\/\/*.reddit.com\/*",
        "*:\/\/*.imgur.com\/*",
        "*:\/\/play.google.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.reddit.com\/*"
            ],
            "js": [
                "data\/zepto.min.js",
                "chrome.js",
                "data\/marked.js",
                "data\/redditplus.js",
                "data\/magpopup.js"
            ],
            "css": [
                "data\/redditplus.css",
                "data\/magpopup.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "data\/button.png",
        "data\/button-close.png",
        "data\/loading.gif"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}