4Chan Gallery Mode WG

4Chan Gallery Mode WG

Adds gallery button to 4chan thread views with keyboard shortcuts. Note: if webms don't work, could you please try updating yourself to at least version 0.21, which is out now? Video overview here: https://www.youtube.com/watch?v=5BBTDiYJejM

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "4Chan Gallery Viewer WG",
  "short_name": "GalleryView",
  "version": "0.0.21",
  "description": "Adds gallery button to 4chan wg board thread views, with keyboard shortcuts. Also: optionally, add your OpenAI ApiKey to have the power to do image description lookups.",
  "permissions": [
    "contextMenus",
    "downloads",
    "storage",
    "activeTab",
    "https://api.openai.com/*"
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "util.js",
        "jquery.js",
        "settingsModule.js",
        "aiModule.js",
        "labelsModule.js",
        "main.js"
      ],
      "css": [
        "styles.css"
      ],
      "matches": [
        "http://boards.4chan.org/*",
        "https://boards.4chan.org/*",
        "http://boards.4channel.org/*",
        "https://boards.4channel.org/*"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{2381ef0e-653b-4549-b953-27124405c12e}"
    }
  }
}