Kindling for Campfire
Adds useful features to 37signals Campfire.
Kindling for Campfire란 무엇입니까?
Kindling for Campfire은(는) http://yetilabs.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds useful features to 37signals Campfire."입니다.
확장 프로그램 스크린샷
Kindling for Campfire 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
• Desktop notifications for new messages. • Adds the ability to remove enter, leave, and timestamp messages. • Adds emoji & sound auto-complete. • Option to show user avatars. • Option to highlight your name when it's mentioned. • Many other convenient features that improve the campfire experience. Submit your questions and suggestions at: https://github.com/ejensen/Kindling/issues Kindling is open source! Help improve it on GitHub: https://github.com/ejensen/Kindling
확장 프로그램 기본 정보
이름 | |
ID | abnakpmgckdkcpgbcejajjbllagggcif |
공식 URL | https://chrome.google.com/webstore/detail/kindling-for-campfire/abnakpmgckdkcpgbcejajjbllagggcif |
설명 | Adds useful features to 37signals Campfire. |
파일 크기 | 105 KB |
설치 횟수 | 2,415 |
현재 버전 | 4.4.4 |
최근 업데이트 | 2015-03-17 |
출시 날짜 | 2015-03-17 |
평점 | 4.17/5 총 48 개의 평점 |
개발자 | http://yetilabs.org |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Kindling for Campfire", "short_name": "Kindling", "version": "4.4.4", "default_locale": "en_US", "description": "__MSG_description__", "background": { "scripts": [ "scripts\/kindling.background.js" ], "persistent": false }, "options_page": "options.html", "minimum_chrome_version": "28", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "permissions": [ "notifications", "tabs", "*:\/\/*.campfirenow.com\/room\/*" ], "page_action": { "default_icon": { "19": "img\/icon19.png", "38": "img\/icon38.png" }, "default_title": "__MSG_iconTooltip__", "default_popup": "options.html" }, "web_accessible_resources": [ "img\/campfire.png", "img\/avatar.png", "img\/empty_avatar.png", "img\/emoji.png", "img\/sound.png", "img\/symbols.png", "img\/nature.png", "img\/objects.png", "img\/places.png", "img\/eye.svg", "img\/close.svg", "scripts\/kindling.inject.js" ], "content_scripts": [ { "matches": [ "*:\/\/*.campfirenow.com\/room\/*" ], "css": [ "css\/content.css", "lib\/coda-slider\/coda-slider.css", "lib\/at-who\/jquery.atwho.css" ], "js": [ "lib\/jquery.min.js", "lib\/pubsub.min.js", "lib\/highlight.min.js", "lib\/coda-slider\/jquery.coda-slider.js", "lib\/at-who\/jquery.atwho.min.js", "scripts\/kindling.common.js", "scripts\/kindling.theme.js", "scripts\/kindling.emoji.js", "scripts\/kindling.sounds.js", "scripts\/kindling.highlight.js", "scripts\/kindling.messagefilter.js", "scripts\/kindling.avatars.js", "scripts\/kindling.notificationpublisher.js", "scripts\/kindling.contentscript.js", "scripts\/kindling.minimalinterface.js", "scripts\/kindling.expandabbreviations.js", "scripts\/kindling.history.js", "scripts\/kindling.images.js" ] } ] } |