Twitter Edit Button

Twitter Edit Button

twitter.com Edit Button (FOR FUN ONLY)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "[email protected]",
    "default_popup": "popup.html",
    "default_title": "Twitter Edit Button 2.1"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com/ga.js; object-src 'self'",
  "content_scripts": [
    {
      "js": [
        "js/jquery.js",
        "js/ga.helper.js"
      ],
      "matches": [
        "http://*.twitter.com/*",
        "https://*.twitter.com/*"
      ]
    }
  ],
  "description": "twitter.com Edit Button (FOR FUN ONLY)",
  "icons": {
    "16": "[email protected]",
    "19": "[email protected]",
    "48": "[email protected]",
    "128": "[email protected]"
  },
  "manifest_version": 2,
  "name": "Twitter Edit Button",
  "permissions": [
    "activeTab",
    "contextMenus",
    "http://*.twitter.com/*",
    "https://*.twitter.com/*"
  ],
  "version": "2.1",
  "web_accessible_resources": [
    "js/jquery.js",
    "js/script.twitter.hack.js",
    "css/twitter.style.css",
    "css/popup.style.css"
  ]
}