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文件

下載Basecamp Notification擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
    ]
}