Letterboxd Movie Assistant

Letterboxd Movie Assistant

Shows a page action for imdb/rotten tomatoes film pages to go to the letterboxd equivalant

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Letterboxd Movie Assistant",
  "version": "0.2",
  "description": "Shows a page action for imdb/rotten tomatoes film pages to go to the letterboxd equivalant",
  "background": {
    "scripts": [
      "background.js",
      "jquery.min.js"
    ]
  },
  "page_action": {
    "default_icon": "icon-19.png",
    "default_title": "Go to this films letterboxd page!"
  },
  "permissions": [
    "tabs",
    "http://api.rottentomatoes.com/api/public/v1.0*",
    "http://www.rottentomatoes.com/*",
    "http://www.imdb.com/*",
    "http://letterboxd.com/*"
  ],
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  }
}