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!」です。
拡張機能のスクリーンショット
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |