Ruttl

Ruttl

Connect and add a page to your ruttl project.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Ruttl",
  "version": "2.15.1",
  "description": "Connect and add a page to your ruttl project.",
  "icons": {
    "16": "images/ruttl-icon-16.png",
    "32": "images/ruttl-icon-32.png",
    "48": "images/ruttl-icon-48.png",
    "128": "images/ruttl-icon-128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "scripting",
    "storage"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Ruttl"
  },
  "externally_connectable": {
    "matches": [
      "https://*.ruttl.com/*"
    ]
  },
  "host_permissions": [
    "<all_urls>",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*",
        "/fonts/*",
        "/styles/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "author": "Ruttl",
  "offline_enabled": false,
  "minimum_chrome_version": "88"
}