Twitter Stars

Twitter Stars

Changes the new Twitter 'Like' heart back to the original 'Favorite' star!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitter Stars",
  "short_name": "Twitter Stars",
  "options_page": "options/index.html",
  "default_locale": "en",
  "description": "Changes the new Twitter 'Like' heart back to the original 'Favorite' star!",
  "version": "1.7.3",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "http://www.twitter.com/*",
        "https://www.twitter.com/*",
        "http://twitter.com/*",
        "https://twitter.com/*"
      ],
      "js": [
        "jquery.js",
        "StarsMain.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "https://ajax.googleapis.com/",
    "storage"
  ],
  "web_accessible_resources": [
    "img/animation.png",
    "style.css"
  ],
  "background": {
    "scripts": [
      "jquery.js"
    ],
    "persistent": false
  },
  "icons": {
    "128": "img/icon.png"
  }
}