ViewTweets

ViewTweets

View tweets featuring the URL of your active Chrome tab. Click toolbar icon or 'Command + K' (Mac) to search for tweets.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ViewTweets",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "View tweets featuring the URL of your active Chrome tab. Click toolbar icon or 'Command + K' (Mac) to search for tweets.",
  "homepage_url": "http://weisser.io",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "View tweets of this URL"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+K",
        "mac": "Command+K",
        "chromeos": "Ctrl+K",
        "linux": "Ctrl+K"
      }
    }
  }
}