Reddit+

Reddit+

Reddit+ là gì?

Reddit+ là một tiện ích mở rộng Chrome được phát triển bởi @kennydude, và tính năng chính của nó là "Reddit+".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Reddit+

Tải xuống các tệp mở rộng Reddit+ dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Reddit+ Reddit+
ID djinnjnojhiahjgjahicofaakpmpdfhc
URL Chính Thức https://chrome.google.com/webstore/detail/reddit+/djinnjnojhiahjgjahicofaakpmpdfhc
Mô tả Reddit+
Kích Thước Tệp 75.52 KB
Số Lần Cài Đặt 13
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2013-05-19
Ngày Phát Hành 2013-05-19
Nhà Phát Triển @kennydude
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kennydude/redditplus
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}