UT Instapoll Notifier

Get notified when a UT Instapoll goes live!

什麼是UT Instapoll Notifier?

UT Instapoll Notifier是由Max Weinreb and Logan Vaz開發的Chrome擴展程式,該擴展的主要功能是“Get notified when a UT Instapoll goes live!”。

擴展截圖

screenshot

下載UT Instapoll Notifier擴展crx文件

下載UT Instapoll Notifier擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}