Reddit Signatures

Automatically appends custom text to your posts in a given subreddit

Vad är Reddit Signatures?

Reddit Signatures är en Chrome-tillägg utvecklad av Erin Bleiweiss, och dess huvudfunktion är "Automatically appends custom text to your posts in a given subreddit".

Tilläggsskärmbilder

screenshot

Ladda ner Reddit Signatures-förlängningens CRX-fil

Ladda ner Reddit Signatures-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Reddit Signatures Reddit Signatures
ID jlcchkkjagjangemnkkiigccbkjcmlla
Officiell webbadress https://chromewebstore.google.com/detail/reddit-signatures/jlcchkkjagjangemnkkiigccbkjcmlla
Beskrivning Automatically appends custom text to your posts in a given subreddit
Filstorlek 412 KB
Antal Installationer 13
Aktuell Version 1.1
Senast Uppdaterad 2015-12-21
Publiceringsdatum 2015-12-20
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Erin Bleiweiss
Betalningssätt free
Stödda Språk 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"
}