Examine source code of Arkivist

Inspect and view changes in Arkivist source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Arkivist",
  "version": "1.0.1",
  "description": "Arkivist is your personal website archive assistant.",
  "permissions": [
    "activeTab",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "contextMenus",
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "static/js/background.js"
    ]
  },
  "browser_action": {
    "default_title": "Arkivist",
    "default_popup": "pop-up.html",
    "default_icon": {
      "16": "images/logo-16x16.png",
      "32": "images/logo-32x32.png"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "arkivistextension@gmail.com"
    }
  },
  "icons": {
    "32": "images/logo-32x32.png",
    "128": "images/logo-128x128.png"
  },
  "options_ui": {
    "page": "settings.html"
  },
  "web_accessible_resources": [
    "arkivist.html"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}