Reddit Signatures
Automatically appends custom text to your posts in a given subreddit
Was ist Reddit Signatures?
Reddit Signatures ist eine Chrome-Erweiterung, die von Erin Bleiweiss entwickelt wurde, und ihr Hauptmerkmal ist "Automatically appends custom text to your posts in a given subreddit".
Erweiterungsscreenshots
Reddit Signatures-Erweiterungs-CRX-Datei herunterladen
Laden Sie Reddit Signatures-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Reddit Signatures |
ID | jlcchkkjagjangemnkkiigccbkjcmlla |
Offizielle URL | https://chromewebstore.google.com/detail/reddit-signatures/jlcchkkjagjangemnkkiigccbkjcmlla |
Beschreibung | Automatically appends custom text to your posts in a given subreddit |
Dateigröße | 412 KB |
Installationsanzahl | 13 |
Aktuelle Version | 1.1 |
Letztes Update | 2015-12-21 |
Veröffentlichungsdatum | 2015-12-20 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Erin Bleiweiss |
Zahlungsart | free |
Unterstützte Sprachen | 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" } |