Reddit Signatures
Automatically appends custom text to your posts in a given subreddit
O que é Reddit Signatures?
Reddit Signatures é uma extensão do Chrome desenvolvida por Erin Bleiweiss, e sua principal característica é "Automatically appends custom text to your posts in a given subreddit".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Reddit Signatures
Baixe arquivos de extensão Reddit Signatures no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Reddit Signatures |
ID | jlcchkkjagjangemnkkiigccbkjcmlla |
URL Oficial | https://chromewebstore.google.com/detail/reddit-signatures/jlcchkkjagjangemnkkiigccbkjcmlla |
Descrição | Automatically appends custom text to your posts in a given subreddit |
Tamanho do Arquivo | 412 KB |
Contagem de Instalações | 13 |
Versão Atual | 1.1 |
Última Atualização | 2015-12-21 |
Data de Publicação | 2015-12-20 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Erin Bleiweiss |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } |