Reddit+

Reddit+

Reddit+とは何ですか?

Reddit+は@kennydudeによって開発されたChromeの拡張機能で、その主な機能は「Reddit+」です。

拡張機能のスクリーンショット

screenshot

Reddit+拡張機能のCRXファイルをダウンロード

Reddit+拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Reddit+ Reddit+
ID djinnjnojhiahjgjahicofaakpmpdfhc
公式URL https://chrome.google.com/webstore/detail/reddit+/djinnjnojhiahjgjahicofaakpmpdfhc
説明 Reddit+
ファイルサイズ 75.52 KB
インストール数 13
現在のバージョン 1.4
最終更新日 2013-05-19
公開日 2013-05-19
開発者 @kennydude
支払い方法 free
拡張機能のウェブサイト https://github.com/kennydude/redditplus
対応言語 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"
    }
}