MobJoe - Mobile Development Tools

MobJoe - Mobile Development Tools

Mobile Development Tools that help you increase your productivity developing for different mobile devices

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "MobJoe - Mobile Development Tools",
  "version": "0.0.5",
  "description": "Mobile Development Tools that help you increase your productivity developing for different mobile devices",
  "icons": {
    "16": "assets/icons/icon16.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "assets/icons/icon16.png",
      "24": "assets/icons/icon24.png",
      "32": "assets/icons/icon32.png"
    }
  },
  "background": {
    "service_worker": "/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "content.js",
        "styles.css",
        "main.js",
        "polyfills.js",
        "runtime.js",
        "index.html"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "permissions": [
    "tabs",
    "scripting",
    "activeTab",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ]
}