franklin-web-extension

franklin-web-extension

Franklin Web Extension provides authoring experience for the Franklin Web publishing platform. Features include: previewing and…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "franklin-web-extension",
  "version": "1.0.89",
  "manifest_version": 3,
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "96": "icon/96.png",
    "128": "icon/128.png"
  },
  "action": {
    "default_popup": "src/popup/popup.html"
  },
  "host_permissions": [
    "http://localhost:3000/*",
    "https://*.web.pfizer/*",
    "https://pfizer.sharepoint.com/*",
    "https://admin.hlx.page/*"
  ],
  "permissions": [
    "scripting",
    "storage",
    "declarativeNetRequest"
  ],
  "background": {
    "service_worker": "src/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "style.css",
        "src/content-script/index.js",
        "src/popup/popup.js",
        "index.js",
        "sharepoint-detection.js"
      ],
      "matches": [
        "http://localhost:3000/*",
        "https://*.web.pfizer/*",
        "https://pfizer.sharepoint.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:3000/*",
      "https://*.web.pfizer/*",
      "https://pfizer.sharepoint.com/*",
      "https://admin.hlx.page/*"
    ]
  }
}