Multi Purpose Extension

Multi Purpose Extension

Extension merging many modules : access to setting pages of Chrome, tasks management, sessions management, mouse gestures, ...

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": {
      "16": "Icones/Option16.png",
      "48": "Icones/Option48.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "js": [
        "contentmse.js",
        "contentmpe.js"
      ]
    }
  ],
  "default_locale": "fr",
  "description": "__MSG_jsonDescription__",
  "homepage_url": "https://sites.google.com/site/publicationact/developpements/chrome/une-extension-pour-chrome",
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "Icones/Option16.png",
    "48": "Icones/Option48.png"
  },
  "manifest_version": 3,
  "name": "Multi Purpose Extension",
  "options_page": "option.html",
  "permissions": [
    "bookmarks",
    "contextMenus",
    "downloads",
    "downloads.shelf",
    "history",
    "management",
    "scripting",
    "storage",
    "tabs"
  ],
  "short_name": "MPE",
  "version": "4.8.2"
}