Reddit Signatures

Automatically appends custom text to your posts in a given subreddit

Qu'est-ce que Reddit Signatures ?

Reddit Signatures est une extension Chrome développée par Erin Bleiweiss, et sa fonction principale est "Automatically appends custom text to your posts in a given subreddit".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Reddit Signatures

Téléchargez les fichiers d'extension Reddit Signatures au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Reddit Signatures Reddit Signatures
ID jlcchkkjagjangemnkkiigccbkjcmlla
URL Officiel https://chromewebstore.google.com/detail/reddit-signatures/jlcchkkjagjangemnkkiigccbkjcmlla
Description Automatically appends custom text to your posts in a given subreddit
Taille du Fichier 412 KB
Nombre d'Installations 13
Version Actuelle 1.1
Dernière Mise à Jour 2015-12-21
Date de Publication 2015-12-20
Évaluation 5.00/5 Total 1 Évaluations
Développeur Erin Bleiweiss
Type de Paiement free
Langues Prises en Charge 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"
}