Screenshots for Facebook

Screenshots for Facebook

Take screenshots of Facebook comment threads, with automatic stitching, anonymization and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Screenshots for Facebook",
  "short_name": "FB Screenshooter",
  "author": "Didrik Nordström",
  "description": "Take screenshots of Facebook comment threads, with automatic stitching, anonymization and more.",
  "version": "1.3",
  "icons": {
    "128": "icon128.png"
  },
  "permissions": [
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "css": [
        "style.css",
        "bootstrap-ns.min.css"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "bootstrap.min.js",
        "content_script.js"
      ],
      "matches": [
        "https://www.facebook.com/*"
      ]
    }
  ]
}