cTouch r5 (browserUA)

cTouch r5 (browserUA)

You can browse smartphone websites. No configuration screens; command line --user-agent value is used.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "@cielavenir",
  "name": "cTouch r5 (browserUA)",
  "description": "You can browse smartphone websites. No configuration screens; command line --user-agent value is used.",
  "version": "2.7.1.6127",
  "manifest_version": 2,
  "homepage_url": "https://github.com/cielavenir/ctouch/",
  "background": {
    "scripts": [
      "ctouch_bg.js"
    ],
    "persistent": true
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "ctouch_bootstrap.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "ctouch_css.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "-ms-preload": {
    "backgroundScript": "backgroundScriptsAPIBridge.js",
    "contentScript": "contentScriptsAPIBridge.js"
  }
}