Reddit Signatures

Automatically appends custom text to your posts in a given subreddit

What is Reddit Signatures?

Reddit Signatures is a Chrome extension developed by Erin Bleiweiss, and its main feature is "Automatically appends custom text to your posts in a given subreddit".

Extension Screenshots

screenshot

Download Reddit Signatures Extension CRX File

Download Reddit Signatures extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Reddit Signatures Reddit Signatures
ID jlcchkkjagjangemnkkiigccbkjcmlla
Official URL https://chromewebstore.google.com/detail/reddit-signatures/jlcchkkjagjangemnkkiigccbkjcmlla
Description Automatically appends custom text to your posts in a given subreddit
File Size 412 KB
Installation Count 13
Current Version 1.1
Last Updated 2015-12-21
Publish Date 2015-12-20
Rating 5.00/5 Total 1 Ratings
Developer Erin Bleiweiss
Payment Type free
Supported Languages 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"
}