Efficient Coder

Efficient Coder

Developer dashboard to produce desired results without wasting your time and energy

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Efficient Coder",
  "version": "0.2.1",
  "description": "Developer dashboard to produce desired results without wasting your time and energy",
  "icons": {
    "16": "/static/images/icon_16.png",
    "48": "/static/images/icon_64.png",
    "128": "/static/images/icon_128.png"
  },
  "action": {
    "default_icons": {
      "16": "/static/images/icon_16.png",
      "24": "/static/images/icon_24.png",
      "32": "/static/images/icon_32.png"
    },
    "default_title": "Developer Focus Tab",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "chrome_url_overrides": {
    "newtab": "tab.html"
  },
  "permissions": [
    "storage",
    "alarms",
    "declarativeNetRequest",
    "notifications",
    "tabs"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/audio/start_timer.mp3",
        "static/audio/end_timer.mp3",
        "blocked.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}