Llamalerts
Checks the Deviantart Badges page and lets you know when you have trade offers.
Llamalerts란 무엇입니까?
Llamalerts은(는) Christopher Naron에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Checks the Deviantart Badges page and lets you know when you have trade offers."입니다.
확장 프로그램 스크린샷
Llamalerts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
-- No Longer Being Maintained. The source is on github, feel free to edit and update it as you like -- Llamalerts auto-refreshes your Deviantart Badges page and plays an audio cue if there's any open trade offers. How to use: 1. Go to the Deviantart Badges page. 2. Type how often you want to refresh in the box 3. Click the toggle switch on the extension 4. Open another tab and do something else. To stop the extension go back to the Badges page and then click the toggle switch again.
확장 프로그램 기본 정보
이름 | |
ID | llhfdehocdehnipbhhgonidbaonijogp |
공식 URL | https://chrome.google.com/webstore/detail/llhfdehocdehnipbhhgonidbaonijogp |
설명 | Checks the Deviantart Badges page and lets you know when you have trade offers. |
파일 크기 | 9.61 KB |
설치 횟수 | 17 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2017-04-25 |
출시 날짜 | 2017-04-25 |
평점 | 3.50/5 총 2 개의 평점 |
개발자 | Christopher Naron |
이메일 | Christopher.naron@gmail |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Christopher Naron ", "name": "Llamalerts", "description": "Checks the Deviantart Badges page and lets you know when you have trade offers.", "version": "1.0.2", "browser_action": { "default_popup": "popup.html", "default_icon": "Logo.png" }, "icons": { "16": "Logo.png", "32": "active_logo.png", "64": "64_logo.png" }, "permissions": [ "tabs", "activeTab", "*:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "scripts.js" ] } ] } |