UT Instapoll Notifier

Get notified when a UT Instapoll goes live!

¿Qué es UT Instapoll Notifier?

UT Instapoll Notifier es una extensión de Chrome desarrollada por Max Weinreb and Logan Vaz, y su función principal es "Get notified when a UT Instapoll goes live!".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión UT Instapoll Notifier

Descarga archivos de extensión UT Instapoll Notifier en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre UT Instapoll Notifier UT Instapoll Notifier
ID ajnlhnpgamfdmddakimfflpbghneogcc
URL Oficial https://chromewebstore.google.com/detail/ut-instapoll-notifier/ajnlhnpgamfdmddakimfflpbghneogcc
Descripción Get notified when a UT Instapoll goes live!
Tamaño del Archivo 167 KB
Cantidad de Instalaciones 134
Versión Actual 0.0.3
Última Actualización 2024-02-25
Fecha de Publicación 2024-02-22
Desarrollador Max Weinreb and Logan Vaz
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}