4chan Archive Image Viewer

4chan Archive Image Viewer

Quickly show images from page, they're overlayed on current page and eliminate the need to open 8 million images in a new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "4chan Archive Image Viewer",
  "version": "1.0.3",
  "description": "Quickly show images from page, they're overlayed on current page and eliminate the need to open 8 million images in a new tab.",
  "content_scripts": [
    {
      "matches": [
        "https://archived.moe/*",
        "https://thebarchive.com/*",
        "https://archive.wakarimasen.moe/*",
        "https://desuarchive.org/*"
      ],
      "js": [
        "js/jquery-3.2.1.min.js",
        "js/popup.js"
      ],
      "comment": "BE VERY CAREFUL WITH PLACEMENT OF EXTERNAL FILES. JQUERY MUST BE LOADED BEFORE ANY OTHER JS SO IT MUST BE IN FIRST INDEX",
      "css": [
        "layout/layout.css"
      ]
    }
  ]
}