Reddit Signatures

Automatically appends custom text to your posts in a given subreddit

Reddit Signatures là gì?

Reddit Signatures là một tiện ích mở rộng Chrome được phát triển bởi Erin Bleiweiss, và tính năng chính của nó là "Automatically appends custom text to your posts in a given subreddit".

Ả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 Signatures

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

                        Automatically inserts a custom signature to the end of each of your posts.  Create signatures on a subreddit-by-subreddit basis using a visual editor and markdown previews.  Toggle saved signatures on and off for easy reuse.  Select the "pick at random" option to create multiple signatures for a single subreddit, which will be selected at random for each page.

Perfect for signature bets for your favorite sports subreddit.                    

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

Tên Reddit Signatures Reddit Signatures
ID jlcchkkjagjangemnkkiigccbkjcmlla
URL Chính Thức https://chromewebstore.google.com/detail/reddit-signatures/jlcchkkjagjangemnkkiigccbkjcmlla
Mô tả Automatically appends custom text to your posts in a given subreddit
Kích Thước Tệp 412 KB
Số Lần Cài Đặt 13
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2015-12-21
Ngày Phát Hành 2015-12-20
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Erin Bleiweiss
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit Signatures",
    "short_name": "Custom signatures for reddit posts",
    "description": "Automatically appends custom text to your posts in a given subreddit",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "js": [
                "\/js\/jquery-2.1.4.min.js",
                "\/js\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "options_page": "options.html"
}