Advent of Code Telegram Bot
Save your private leaderboards as you browse and then use bots to display those scores on Telegram (@AoC_update_bot)
Vad är Advent of Code Telegram Bot?
Advent of Code Telegram Bot är en Chrome-tillägg utvecklad av pixelBlind, och dess huvudfunktion är "Save your private leaderboards as you browse and then use bots to display those scores on Telegram (@AoC_update_bot)".
Tilläggsskärmbilder
Ladda ner Advent of Code Telegram Bot-förlängningens CRX-fil
Ladda ner Advent of Code Telegram Bot-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Every time you visit a private leaderboard on the official Advent of Code website, scores are sent to our Bot which then sends the latest updates to your private or group chat on Telegram. This extension + Telegram bot (@AoC_update_bot) were made to help us display updates in our private Telegram group where we discuss everything Advent of Code related.
Grundläggande Information om Tillägg
Namn | Advent of Code Telegram Bot |
ID | hhdgeepenncmfmdoidnjpnhmpmgndank |
Officiell webbadress | https://chromewebstore.google.com/detail/advent-of-code-telegram-b/hhdgeepenncmfmdoidnjpnhmpmgndank |
Beskrivning | Save your private leaderboards as you browse and then use bots to display those scores on Telegram (@AoC_update_bot) |
Filstorlek | 12.65 KB |
Antal Installationer | 28 |
Aktuell Version | 0.0.0.2 |
Senast Uppdaterad | 2020-12-19 |
Publiceringsdatum | 2020-12-14 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | pixelBlind |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Dino Borg", "name": "Advent of Code Telegram Bot", "version": "0.0.0.2", "description": "Save your private leaderboards as you browse and then use bots to display those scores on Telegram (@AoC_update_bot)", "content_scripts": [ { "js": [ "app.js" ], "matches": [ "http:\/\/adventofcode.com\/*", "https:\/\/adventofcode.com\/*" ], "run_at": "document_end" } ], "icons": { "16": "images\/aoc_16.png", "32": "images\/aoc_32.png", "48": "images\/aoc_48.png", "128": "images\/aoc_128.png" }, "manifest_version": 2 } |