UpdateSWH

UpdateSWH

Check archival state of a source code repository and propose to update it if needed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "UpdateSWH",
  "version": "0.6.8",
  "manifest_version": 2,
  "description": "Check archival state of a source code repository and propose to update it if needed.",
  "icons": {
    "16": "img/icon-16.png",
    "32": "img/icon-32.png",
    "48": "img/icon-48.png",
    "64": "img/icon-64.png",
    "128": "img/icon-128.png"
  },
  "browser_action": {
    "default_title": "UpdateSWH",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/img/icon-16.png",
      "32": "/img/icon-32.png",
      "48": "/img/icon-48.png",
      "128": "/img/icon-128.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/updateswh.css"
      ],
      "js": [
        "js/jquery-3.6.0.min.js",
        "updateswh.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'; connect-src 'self' https://archive.softwareheritage.org/",
  "web_accessible_resources": [
    "*.html"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "tabs",
    "activeTab"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{157eb9f0-9814-4fcc-b0b7-586b3093c641}"
    }
  }
}