Birdy

Birdy

Replaces the new tab page with the top tweet from your Twitter feed

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Birdy",
  "description": "Replaces the new tab page with the top tweet from your Twitter feed",
  "version": "0.0.0.5",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "tabs",
    "http://localhost/",
    "http://*/*",
    "https://*/*",
    "https://api.twitter.com/*"
  ],
  "chrome_url_overrides": {
    "newtab": "background.html"
  },
  "icons": {
    "128": "images/icon_128.png"
  }
}