Reddit Signatures

Automatically appends custom text to your posts in a given subreddit

Hvad er Reddit Signatures?

Reddit Signatures er en Chrome-udvidelse udviklet af Erin Bleiweiss, og dens hovedfunktion er "Automatically appends custom text to your posts in a given subreddit".

Udvidelsesskærmbilleder

screenshot

Download Reddit Signatures-udvidelses-CRX-fil

Download Reddit Signatures-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Reddit Signatures Reddit Signatures
ID jlcchkkjagjangemnkkiigccbkjcmlla
Officiel URL https://chromewebstore.google.com/detail/reddit-signatures/jlcchkkjagjangemnkkiigccbkjcmlla
Beskrivelse Automatically appends custom text to your posts in a given subreddit
Filstørrelse 412 KB
Antal Installationer 13
Nuværende Version 1.1
Senest Opdateret 2015-12-21
Udgivelsesdato 2015-12-20
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Erin Bleiweiss
Betalingsmetode free
Understøttede Sprog 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"
}