Examine source code of Save All Posts

Inspect and view changes in Save All Posts 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
{
  "name": "Save Post",
  "description": "Collects batch of post links from social platform Web",
  "version": "7.0",
  "permissions": [
    "<all_urls>",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js?0"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "extra/content_common.js?0",
        "content_twitter.js?0"
      ]
    },
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "extra/content_common.js?0",
        "content_facebook.js?0"
      ]
    },
    {
      "matches": [
        "*://*.patreon.com/*"
      ],
      "js": [
        "extra/content_common.js?0",
        "content_patreon.js?0"
      ]
    },
    {
      "matches": [
        "*://*.reddit.com/*"
      ],
      "js": [
        "extra/content_common.js?0",
        "content_reddit.js?0"
      ]
    },
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "extra/content_common.js?0",
        "content_instagram.js?0"
      ]
    },
    {
      "matches": [
        "*://news.google.com/*"
      ],
      "js": [
        "extra/content_common.js?0",
        "content_googlenews.js?0"
      ]
    },
    {
      "matches": [
        "*://opensea.io/*"
      ],
      "js": [
        "extra/content_common.js?0",
        "content_opensea.js?0"
      ]
    },
    {
      "matches": [
        "*://discord.com/*"
      ],
      "js": [
        "extra/content_common.js?0",
        "content_discord.js?0"
      ]
    }
  ],
  "web_accessible_resources": [
    "gpl-1.0.txt?0",
    "popup.html?0",
    "page.html?0"
  ],
  "browser_action": {
    "default_icon": "default-64.png",
    "default_title": "Save Post"
  },
  "incognito": "spanning",
  "options_ui": {
    "page": "./options.html"
  },
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{e8b40d5d-21e4-4408-b2e4-53514bff1c09}"
    }
  }
}