Board Swiper

Board Swiper

An extension helping user go to next or previous page on a board

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.2.2.3",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "icon/icon16.png",
    "32": "icon/icon32.png",
    "64": "icon/icon64.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon/icon16.png",
      "32": "icon/icon32.png"
    }
  },
  "author": "jacobkim9881",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "js": [
        "page-mover.js",
        "page-turner.js",
        "give-event.js",
        "give-event2.js",
        "give-event3.js",
        "give-event4.js",
        "give-event5.js",
        "give-event6.js",
        "list-event.js",
        "site-list.js",
        "content.js"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "declarativeContent"
  ],
  "manifest_version": 3
}