dphelper

dphelper

State and Store manager system for dpHelper NPM by Dario Passariello

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "0.2.2",
  "name": "dphelper",
  "short_name": "dphelper",
  "description": "State and Store manager system for dpHelper NPM by Dario Passariello",
  "default_locale": "en",
  "author": {
    "name": "Dario Passariello",
    "url": "https://github.com/passariello/",
    "email": "[email protected]"
  },
  "minimum_chrome_version": "93",
  "background": {
    "service_worker": "/js/worker.js",
    "type": "module"
  },
  "incognito": "not_allowed",
  "devtools_page": "/html/panel.html",
  "action": {
    "browser_style": true,
    "default_title": "dpHelper Manager",
    "default_desciption": "State and Store manager system for dpHelper NPM by Dario Passariello",
    "default_icon": {
      "16": "/themes/light/icons/dphelper_manager_16_disabled.png",
      "32": "/themes/light/icons/dphelper_manager_32_disabled.png"
    }
  },
  "permissions": [
    "scripting",
    "tabs",
    "activeTab",
    "storage",
    "unlimitedStorage",
    "contextMenus",
    "notifications"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self' ",
    "sandbox": "sandbox allow-scripts; worker-src: 'self'; script-src 'self' 'https://apis.google.com/' 'https://www.gstatic.com/' 'https://www.googleapis.com' 'https://ajax.googleapis.com'; object-src 'self'"
  },
  "offline_enabled": false,
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "/js/content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "commands": {
    "toggle-dpHelper": {
      "suggested_key": {
        "default": "Ctrl+Shift+H",
        "linux": "Ctrl+Shift+H"
      },
      "description": "__MSG_appDesc__"
    }
  },
  "web_accessible_resources": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "resources": [
        "/index.html",
        "/style.css",
        "/worker.js",
        "/js/content.js",
        "/js/contextMenu.js",
        "/js/dphelper-devtools.js",
        "/js/panel.js",
        "/js/popup.js",
        "/html/info.html",
        "/html/message.html",
        "/html/newTab.html",
        "/html/panel.html",
        "/html/popup.html"
      ]
    }
  ],
  "icons": {
    "16": "/themes/light/icons/dphelper_manager_16.png",
    "32": "/themes/light/icons/dphelper_manager_32.png",
    "48": "/themes/light/icons/dphelper_manager_48.png",
    "64": "/themes/light/icons/dphelper_manager_64.png",
    "128": "/themes/light/icons/dphelper_manager_128.png",
    "192": "/themes/light/icons/dphelper_manager_192.png",
    "256": "/themes/light/icons/dphelper_manager_256.png",
    "512": "/themes/light/icons/dphelper_manager_512.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}