Reddit Smart Share

Simple sharing plugin for reddit.

Reddit Smart Share là gì?

Reddit Smart Share là một tiện ích mở rộng Chrome được phát triển bởi ItsLennysFault, và tính năng chính của nó là "Simple sharing plugin for 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 Smart Share

Tải xuống các tệp mở rộng Reddit Smart Share 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

                        Simple extension to make it easier to share things from Reddit. All it does is add a small icon to the top left corner of any reddit video player with a link to the direct video URL.                    

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

Tên Reddit Smart Share Reddit Smart Share
ID ldggeafbkacldageoihoigakolmgeekg
URL Chính Thức https://chromewebstore.google.com/detail/reddit-smart-share/ldggeafbkacldageoihoigakolmgeekg
Mô tả Simple sharing plugin for reddit.
Kích Thước Tệp 14.88 KB
Số Lần Cài Đặt 89
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2018-01-29
Ngày Phát Hành 2018-01-29
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển ItsLennysFault
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/RedditSmartShare/RedditSmartShareChrome
URL Trang Trợ Giúp https://github.com/RedditSmartShare/RedditSmartShareChrome
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Smart Share",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Simple sharing plugin for reddit.",
    "homepage_url": "https:\/\/github.com\/RedditSmartShare\/RedditSmartShareChrome",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/www.reddit.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.reddit.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.reddit.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/*.png"
    ]
}