Basecamp Notification

Very simple Basecamp Notification by Studio60

Basecamp Notification란 무엇입니까?

Basecamp Notification은(는) Long "Spirit" Nguyen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Very simple Basecamp Notification by Studio60"입니다.

확장 프로그램 스크린샷

screenshot

Basecamp Notification 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Version 0.0.7:
- Added comments excerpt if exist. 
 
Version 0.0.6: 
- Removed Basecamp omni box to avoid can't connect Basecamp.com on Address bar

Version 0.0.5:
- Longer time before the notification disappear.

Display notification from Basecamp:
- Only new events since the first login.
- Click on the notification to open new tab redirected to Basecamp links.
- Using the first account form Basecamp account.
- 5 seconds update interval.
- Check now button if you dont want to wait.

Usage:
- Click on the browser action icon -> Login -> Allow the App to access Basecamp.                    

확장 프로그램 기본 정보

이름 Basecamp Notification Basecamp Notification
ID chlhiiabhjabnjaaefnmdopodheonjnp
공식 URL https://chromewebstore.google.com/detail/basecamp-notification/chlhiiabhjabnjaaefnmdopodheonjnp
설명 Very simple Basecamp Notification by Studio60
파일 크기 27.93 KB
설치 횟수 84
현재 버전 0.0.8
최근 업데이트 2015-01-19
출시 날짜 2015-01-19
개발자 Long "Spirit" Nguyen
결제 유형 free
확장 프로그램 웹 사이트 https://www.facebook.com/pages/Basecamp-Notification/716806121766928
도움말 페이지 URL https://www.facebook.com/pages/Basecamp-Notification/716806121766928
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Basecamp Notification",
    "version": "0.0.8",
    "manifest_version": 2,
    "description": "Very simple Basecamp Notification by Studio60",
    "icons": {
        "16": "icons\/16x16.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/19x19.png",
            "38": "icons\/38x38.png"
        },
        "default_title": "That's the tool tip",
        "default_popup": "browseraction\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "identity",
        "notifications",
        "https:\/\/launchpad.37signals.com\/authorization\/*",
        "https:\/\/basecamp.com\/*"
    ]
}