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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" ] } |