Limit Launcher

Limit Launcher

Collaborate with the Limit Launcher App to achieve website filtering in Chrome browser on Chromebook device.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Limit Launcher",
  "description": "Collaborate with the Limit Launcher App to achieve website filtering in Chrome browser on Chromebook device.",
  "version": "0.3",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "main.js"
  },
  "host_permissions": [
    "http://limitlauncher.com/",
    "https://limitlauncher.com/",
    "http://www.limitlauncher.com/",
    "https://www.limitlauncher.com/",
    "http://staging.limitlauncher.com/",
    "https://staging.limitlauncher.com/"
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "tabs",
    "gcm"
  ],
  "optional_permissions": [],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_drugs",
        "path": "rules/rule_drugs.json",
        "enabled": true
      },
      {
        "id": "ruleset_gambling",
        "path": "rules/rule_gambling.json",
        "enabled": true
      },
      {
        "id": "ruleset_porn_and_dating",
        "path": "rules/rule_porn_and_dating.json",
        "enabled": true
      },
      {
        "id": "ruleset_torrents",
        "path": "rules/rule_torrents.json",
        "enabled": true
      },
      {
        "id": "ruleset_gaming",
        "path": "rules/rule_gaming.json",
        "enabled": false
      },
      {
        "id": "ruleset_social_media",
        "path": "rules/rule_social_media.json",
        "enabled": false
      },
      {
        "id": "ruleset_video_streaming",
        "path": "rules/rule_video_streaming.json",
        "enabled": false
      }
    ]
  },
  "externally_connectable": {
    "matches": [
      "*://limitlauncher.com/*",
      "*://*.limitlauncher.com/*"
    ]
  }
}