Reddit Signatures
Automatically appends custom text to your posts in a given subreddit
Co to jest Reddit Signatures?
Reddit Signatures to rozszerzenie Chrome opracowane przez Erin Bleiweiss, a jego główną funkcją jest „Automatically appends custom text to your posts in a given subreddit”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Reddit Signatures
Pobierz pliki rozszerzeń Reddit Signatures w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | jlcchkkjagjangemnkkiigccbkjcmlla |
| Oficjalny URL | https://chromewebstore.google.com/detail/reddit-signatures/jlcchkkjagjangemnkkiigccbkjcmlla |
| Opis | Automatically appends custom text to your posts in a given subreddit |
| Rozmiar pliku | 412 KB |
| Liczba instalacji | 13 |
| Aktualna Wersja | 1.1 |
| Ostatnia Aktualizacja | 2015-12-21 |
| Data Publikacji | 2015-12-20 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | Erin Bleiweiss |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
} | |