Tweet This Page

Tweet This Page

Browser Extension that tweets the current page URL and title.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "1.1.1",
  "default_locale": "en",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png",
    "256": "images/icon-256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/intent/tweet?url=*"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "contextMenus",
    "webNavigation",
    "https://twitter.com/intent/tweet?url=*"
  ]
}