UT Instapoll Notifier
Get notified when a UT Instapoll goes live!
O que é UT Instapoll Notifier?
UT Instapoll Notifier é uma extensão do Chrome desenvolvida por Max Weinreb and Logan Vaz, e sua principal característica é "Get notified when a UT Instapoll goes live!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão UT Instapoll Notifier
Baixe arquivos de extensão UT Instapoll Notifier 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
You don't have to stare at Instapoll for an hour waiting for a poll to appear anymore! With your instapoll window open in a tab, you can let this extension do the work. When it sees a poll you haven't completed, it will play a chime sound and send you a notification. Note: This version currently only works for the normal Instapoll, not the one overlayed over a video feed - stay tuned for the updated one that can handle both.
Informações Básicas da Extensão
Nome | UT Instapoll Notifier |
ID | ajnlhnpgamfdmddakimfflpbghneogcc |
URL Oficial | https://chromewebstore.google.com/detail/ut-instapoll-notifier/ajnlhnpgamfdmddakimfflpbghneogcc |
Descrição | Get notified when a UT Instapoll goes live! |
Tamanho do Arquivo | 167 KB |
Contagem de Instalações | 134 |
Versão Atual | 0.0.3 |
Última Atualização | 2024-02-25 |
Data de Publicação | 2024-02-22 |
Desenvolvedor | Max Weinreb and Logan Vaz |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "UT Instapoll Notifier", "description": "Get notified when a UT Instapoll goes live!", "version": "0.0.3", "action": { "default_icon": "images\/icon.png", "default_popup": "index.html" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon.png" }, "content_scripts": [ { "js": [ "listen_instapoll.js" ], "matches": [ "https:\/\/polls.la.utexas.edu\/*" ] } ], "web_accessible_resources": [ { "resources": [ "chime.mp3" ], "matches": [ "https:\/\/polls.la.utexas.edu\/*" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage", "notifications" ] } |