C2U_mini

C2U_mini

A small tool help you countdown time to your events (such as exam test or more).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "C2U_mini",
  "short_name": "M2U",
  "version_name": "0.0.1 beta",
  "version": "0.0.1",
  "description": "A small tool help you countdown time to your events (such as exam test or more).",
  "icons": {
    "16": "assets/16x.png",
    "48": "assets/48x.png",
    "128": "assets/128x.png"
  },
  "author": "NCN",
  "default_locale": "en",
  "action": {
    "default_icon": {
      "16": "assets/16x.png",
      "24": "assets/26x.png",
      "32": "assets/32x.png"
    },
    "default_title": "View detal",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "open-settings": {
      "suggested_key": {
        "default": "Ctrl+Shift+N",
        "mac": "Command+Shift+N"
      },
      "description": "Open settings page"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "inject/countdown.css",
        "lib/jquery-ui.css"
      ],
      "js": [
        "lib/jquery.js",
        "lib/jquery-ui.js",
        "api/api.js",
        "inject/countdown.js"
      ]
    }
  ],
  "homepage_url": "https://github.com/NghiaCaNgao",
  "omnibox": {
    "keyword": "M2U"
  },
  "options_page": "options/options.html",
  "permissions": [
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/icons/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}