Reddit Signatures

Automatically appends custom text to your posts in a given subreddit

Cos'è Reddit Signatures?

Reddit Signatures è un'estensione di Chrome sviluppata da Erin Bleiweiss, e la sua funzione principale è "Automatically appends custom text to your posts in a given subreddit".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Reddit Signatures

Scarica i file di estensione Reddit Signatures in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Reddit Signatures Reddit Signatures
ID jlcchkkjagjangemnkkiigccbkjcmlla
URL Ufficiale https://chromewebstore.google.com/detail/reddit-signatures/jlcchkkjagjangemnkkiigccbkjcmlla
Descrizione Automatically appends custom text to your posts in a given subreddit
Dimensione del File 412 KB
Conteggio Installazioni 13
Versione Corrente 1.1
Ultimo Aggiornamento 2015-12-21
Data di Pubblicazione 2015-12-20
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Erin Bleiweiss
Tipo di Pagamento free
Lingue Supportate 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"
}