Global Mobile

Global Mobile

Make all web pages display as they would on a mobile device

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Global Mobile",
  "version": "1.1",
  "description": "Make all web pages display as they would on a mobile device",
  "options_page": "options/options.html",
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "browser_action": {
    "default_icon": "img/icon_inactive.png",
    "default_popup": "popup/popup.html",
    "default_title": "Global Mobile - click to view mobile version of this page"
  },
  "background": {
    "scripts": [
      "lib/uri.js",
      "js/common.js",
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "activeTab",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "http://*/*",
    "https://*/*",
    "storage",
    "tabs"
  ]
}