UT Instapoll Notifier

Get notified when a UT Instapoll goes live!

UT Instapoll Notifier क्या है?

UT Instapoll Notifier Max Weinreb and Logan Vaz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get notified when a UT Instapoll goes live!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में UT Instapoll Notifier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम UT Instapoll Notifier UT Instapoll Notifier
ID ajnlhnpgamfdmddakimfflpbghneogcc
आधिकारिक URL https://chromewebstore.google.com/detail/ut-instapoll-notifier/ajnlhnpgamfdmddakimfflpbghneogcc
विवरण Get notified when a UT Instapoll goes live!
फ़ाइल का आकार 167 KB
स्थापना संख्या 134
वर्तमान संस्करण 0.0.3
अंतिम अपडेट 2024-02-25
प्रकाशन तिथि 2024-02-22
डेवलपर Max Weinreb and Logan Vaz
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}