Reddit Signatures
Automatically appends custom text to your posts in a given subreddit
Что такое Reddit Signatures?
Reddit Signatures - это расширение Chrome, разработанное Erin Bleiweiss, и его основная функция - "Automatically appends custom text to your posts in a given subreddit".
Снимки экрана расширения
Скачать файл CRX расширения Reddit Signatures
Скачайте файлы расширений Reddit Signatures в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Reddit Signatures |
ID | jlcchkkjagjangemnkkiigccbkjcmlla |
Официальный URL | https://chromewebstore.google.com/detail/reddit-signatures/jlcchkkjagjangemnkkiigccbkjcmlla |
Описание | Automatically appends custom text to your posts in a given subreddit |
Размер файла | 412 KB |
Количество установок | 13 |
Текущая Версия | 1.1 |
Последнее Обновление | 2015-12-21 |
Дата публикации | 2015-12-20 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Erin Bleiweiss |
Тип оплаты | free |
Поддерживаемые языки | 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" } |