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文件
下載Unicorn Apocalypse擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } |