Read In Bed

Read In Bed

Rotate webpages 90, 180, or 270 degrees for easy reading in bed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_action": {
    "default_icon": "icon48.png",
    "default_title": "Read In Bed"
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Rotate webpages 90, 180, or 270 degrees for easy reading in bed",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "name": "Read In Bed",
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery-1.9.1.min.js",
        "inject_rotate.js"
      ]
    }
  ],
  "manifest_version": 2,
  "version": "0.2"
}