Reddit Signatures

Automatically appends custom text to your posts in a given subreddit

¿Qué es Reddit Signatures?

Reddit Signatures es una extensión de Chrome desarrollada por Erin Bleiweiss, y su función principal es "Automatically appends custom text to your posts in a given subreddit".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Reddit Signatures

Descarga archivos de extensión Reddit Signatures en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Reddit Signatures Reddit Signatures
ID jlcchkkjagjangemnkkiigccbkjcmlla
URL Oficial https://chromewebstore.google.com/detail/reddit-signatures/jlcchkkjagjangemnkkiigccbkjcmlla
Descripción Automatically appends custom text to your posts in a given subreddit
Tamaño del Archivo 412 KB
Cantidad de Instalaciones 13
Versión Actual 1.1
Última Actualización 2015-12-21
Fecha de Publicación 2015-12-20
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Erin Bleiweiss
Tipo de Pago free
Idiomas Soportados 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"
}