Better Airline Manager

Better Airline Manager

This extension allows you to load AM2 much faster and on a bigger screen w/o the clutter 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": "Better Airline Manager",
  "version": "0.0.1",
  "description": "This extension allows you to load AM2 much faster and on a bigger screen w/o the clutter of Facebook",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "96": "icon96.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://apps.facebook.com/theairlinemanager",
        "https://apps.facebook.com/theairlinemanager/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs"
  ],
  "author": "Pratyush Vashisht"
}