Reddit Signatures

Automatically appends custom text to your posts in a given subreddit

什麼是Reddit Signatures?

Reddit Signatures是由Erin Bleiweiss開發的Chrome擴展程式,該擴展的主要功能是“Automatically appends custom text to your posts in a given subreddit”。

擴展截圖

screenshot

下載Reddit Signatures擴展crx文件

下載Reddit Signatures擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Reddit Signatures Reddit Signatures
ID jlcchkkjagjangemnkkiigccbkjcmlla
官方網址 https://chromewebstore.google.com/detail/reddit-signatures/jlcchkkjagjangemnkkiigccbkjcmlla
簡介 Automatically appends custom text to your posts in a given subreddit
檔案大小 412 KB
安裝次數 13
目前版本 1.1
更新時間 2015-12-21
上架時間 2015-12-20
評分 5.00/5 共 1 次評分
開發者 Erin Bleiweiss
付費類型 free
支援的語言 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"
}