Unicorn Apocalypse
Fill your screen with unicorns and rainbows every time you click. Prank your friends, or fancy up those boring webpages at work.
Unicorn Apocalypse란 무엇입니까?
Unicorn Apocalypse은(는) odbol에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fill your screen with unicorns and rainbows every time you click. Prank your friends, or fancy up those boring webpages at work."입니다.
확장 프로그램 스크린샷
Unicorn Apocalypse 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension will fill your screen with unicorns and rainbows every time you click the webpage or play a MIDI note on your musical instrument. Prank your friends, or use it as a little pick-me-up to fancy up those boring webpages at work. TO DISABLE: Go to Tools->Extensions, find "Unicorn Apocalypse" and uncheck "Enabled". The unicorns don't appear until you click/play a note several times on a webpage. This makes it more of a surprise for whoever you're pranking! Note: To trigger with a MIDI instrument requires you to enable MIDI support in Chrome. See the options screen for details. Based on the Cornify!! Chrome Extension by Tim MacFarlane. Source: https://github.com/odbol/cornify_chrome
확장 프로그램 기본 정보
이름 | |
ID | jgbeommbklbmegmcncgbnphkcbpibfma |
공식 URL | https://chrome.google.com/webstore/detail/unicorn-apocalypse/jgbeommbklbmegmcncgbnphkcbpibfma |
설명 | Fill your screen with unicorns and rainbows every time you click. Prank your friends, or fancy up those boring webpages at work. |
파일 크기 | 232 KB |
설치 횟수 | 448 |
현재 버전 | 1.11 |
최근 업데이트 | 2014-01-06 |
출시 날짜 | 2014-01-06 |
평점 | 1.87/5 총 177 개의 평점 |
개발자 | odbol |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.drumpants.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Unicorn Apocalypse", "description": "Fill your screen with unicorns and rainbows every time you click. Prank your friends, or fancy up those boring webpages at work.", "version": "1.11", "manifest_version": 2, "icons": { "48": "cornify_48.png", "128": "cornify_128.png" }, "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "midi.js", "cornify.js" ], "css": [ "button_chooser.css" ], "run_at": "document_idle" } ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "cornify.js", "midi.js", "button_chooser.js", "button_chooser.css", "lib\/jquery.js", "lib\/jQuery.DomOutline\/jquery.dom-outline-1.0.js", "lib\/backbone\/underscore.js", "lib\/backbone\/mustache.js", "sparkle.mp3" ] } |