Writecode.one - Extension for developers

Writecode.one - Extension for developers

Một extension cần thiết cho các lập trình viên trong quá trình học tập và phát triển công việc

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Extension for developers",
  "name": "Writecode.one - Extension for developers",
  "description": "Một extension cần thiết cho các lập trình viên trong quá trình học tập và phát triển công việc",
  "icons": {
    "16": "images/favicon.png",
    "32": "images/favicon.png",
    "48": "images/favicon.png",
    "128": "images/favicon.png"
  },
  "action": {
    "default_icon": {
      "16": "images/favicon.png",
      "32": "images/favicon.png",
      "48": "images/favicon.png",
      "128": "images/favicon.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "manifest_version": 3,
  "version": "1.0.2.3",
  "host_permissions": [
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/main.js"
      ],
      "css": [
        "css/main.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "svg/*",
        "static/*",
        "fonts/*",
        "page/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';script-src-elem 'self' "
  },
  "background": {
    "service_worker": "background.js"
  },
  "externally_connectable": {
    "matches": [
      "https://writecode.one/*",
      "https://*.writecode.one/*",
      "http://localhost:3000/*"
    ]
  }
}