TickTick - Todo & Task List

TickTick - Todo & Task List

Your wonderful to-do & task list to make all things done and get life well organized.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "1.2.1.1",
  "short_name": "__MSG_appShortName__",
  "manifest_version": 3,
  "default_locale": "en",
  "options_page": "options.html",
  "icons": {
    "16": "./images/icon-16.png",
    "48": "./images/icon-48.png",
    "128": "./images/icon-128.png"
  },
  "background": {
    "service_worker": "scripts/background.js",
    "type": "module"
  },
  "action": {
    "default_icons": {
      "16": "./images/icon-16.png",
      "48": "./images/icon-48.png",
      "128": "./images/icon-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://dida365.com/*",
        "https://www.dida365.com/*",
        "https://ticktick.com/*",
        "https://www.ticktick.com/*",
        "https://365dida.com/*",
        "https://test.365dida.com/*",
        "https://dev.365dida.com/*"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "js": [
        "scripts/contentscript-webapp.js"
      ]
    },
    {
      "matches": [
        "https://dida365.com/*",
        "https://www.dida365.com/*",
        "https://ticktick.com/*",
        "https://www.ticktick.com/*",
        "https://365dida.com/*",
        "https://test.365dida.com/*",
        "https://dev.365dida.com/*"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "scripts/contentscript-sidepanel-app.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/scripts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "ids": [],
    "matches": [
      "https://dida365.com/*",
      "https://ticktick.com/*"
    ]
  },
  "permissions": [
    "scripting",
    "tabs",
    "storage",
    "contextMenus",
    "cookies",
    "sidePanel"
  ],
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "commands": {
    "add-task": {
      "description": "__MSG_commandAddTo__"
    }
  },
  "minimum_chrome_version": "114"
}