myReach Web Clipper

myReach Web Clipper

Save the things that matter on the web in an interconnected network

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "myReach Web Clipper",
  "version": "1.5.0",
  "description": "Save the things that matter on the web in an interconnected network",
  "author": "MY REACH",
  "short_name": "myReach",
  "background": {
    "page": "background/firefox-background-page.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "bookmarks",
    "scripting",
    "webRequest",
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "*://api.rea.ch/*",
    "https://*/*"
  ],
  "action": {
    "default_icon": {
      "16": "assets/images/logo/16.png",
      "24": "assets/images/logo/24.png",
      "32": "assets/images/logo/32.png",
      "48": "assets/images/logo/48.png",
      "64": "assets/images/logo/64.png",
      "128": "assets/images/logo/128.png",
      "256": "assets/images/logo/256.png"
    }
  },
  "commands": {
    "open-extension": {
      "suggested_key": {
        "default": "Ctrl+Alt+M",
        "mac": "Command+Shift+M"
      },
      "description": "Open myReach Extension"
    }
  },
  "externally_connectable": {
    "matches": [
      "*://*.rea.ch/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "run_at": "document_end",
      "js": [
        "injected/main/import-main.js"
      ],
      "css": [
        "styles/dom.css",
        "assets/icons/main/style.css",
        "assets/icons/subtypes/style.css"
      ]
    }
  ],
  "icons": {
    "16": "assets/images/logo/16.png",
    "24": "assets/images/logo/24.png",
    "32": "assets/images/logo/32.png",
    "48": "assets/images/logo/48.png",
    "64": "assets/images/logo/64.png",
    "128": "assets/images/logo/128.png",
    "256": "assets/images/logo/256.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "styles/base.css",
        "styles/colors.css",
        "styles/fonts.css",
        "styles/icons.css",
        "styles/inputs.css",
        "styles/keyboard-key.css",
        "styles/layout.css",
        "styles/lists.css",
        "styles/release-log.css",
        "styles/spacings.css",
        "assets/icons/main/style.css",
        "assets/icons/subtypes/style.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "assets/release-logs.json",
        "assets/release-logs/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "assets/images/logo/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "assets/images/core/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "assets/icons/main/fonts/*",
        "assets/icons/subtypes/fonts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "chunks/*-*.js",
        "injected/main/main.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{1dc5f288-21e4-44b8-9e58-ee1169d70b57}",
      "strict_min_version": "109.0"
    }
  }
}