UT Instapoll Notifier

Get notified when a UT Instapoll goes live!

Qu'est-ce que UT Instapoll Notifier ?

UT Instapoll Notifier est une extension Chrome développée par Max Weinreb and Logan Vaz, et sa fonction principale est "Get notified when a UT Instapoll goes live!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension UT Instapoll Notifier

Téléchargez les fichiers d'extension UT Instapoll Notifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom UT Instapoll Notifier UT Instapoll Notifier
ID ajnlhnpgamfdmddakimfflpbghneogcc
URL Officiel https://chromewebstore.google.com/detail/ut-instapoll-notifier/ajnlhnpgamfdmddakimfflpbghneogcc
Description Get notified when a UT Instapoll goes live!
Taille du Fichier 167 KB
Nombre d'Installations 134
Version Actuelle 0.0.3
Dernière Mise à Jour 2024-02-25
Date de Publication 2024-02-22
Développeur Max Weinreb and Logan Vaz
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}