Just Do It

Just Do It

A little bit of motivation for any occasion!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "service_worker": "scripts/background.js"
  },
  "action": {
    "default_icon": "images/icon.png",
    "icons": [
      "images/icon.png"
    ],
    "default_title": "Just Do It"
  },
  "content_scripts": [
    {
      "css": [
        "styles/main.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "default_locale": "en",
  "description": "__MSG_appDescription__",
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "short_name": "Just Do It",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.2.1",
  "web_accessible_resources": [
    {
      "resources": [
        "/assets/*",
        "/images/*",
        "/styles/main.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}