Rotaty

Rotaty

Rotaty is a Chrome extension that rotates images inside of Facebook.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Rotaty",
  "description": "Rotaty is a Chrome extension that rotates images inside of Facebook.",
  "icons": {
    "128": "rotateIcon128px.png"
  },
  "version": "0.1",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "https://www.facebook.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png"
  }
}