Extension Sync

Extension Sync

Synchronously manage your extensions for Chrome and Fireforx through the Github.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Extension Sync",
  "version": "0.0.4",
  "icons": {
    "16": "assets/icon16.png",
    "32": "assets/icon32.png",
    "48": "assets/icon48.png",
    "64": "assets/icon64.png",
    "128": "assets/icon128.png"
  },
  "description": "Synchronously manage your extensions for Chrome and Fireforx through the Github.",
  "manifest_version": 3,
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icon16.png",
      "32": "assets/icon32.png",
      "48": "assets/icon48.png",
      "64": "assets/icon64.png",
      "128": "assets/icon128.png"
    }
  },
  "background": {
    "service_worker": "back.js"
  },
  "permissions": [
    "management",
    "storage"
  ],
  "host_permissions": [
    "https://api.github.com/*",
    "http://172.245.106.105/*",
    "https://raw.githubusercontent.com/*"
  ],
  "options_page": "./settings/index.html",
  "web_accessible_resources": [
    {
      "resources": [
        "/settings/*"
      ],
      "matches": [
        "https://github.com/*"
      ]
    }
  ]
}