MastOinker

MastOinker

Quick image view assistant for Mastodon client

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "version": "1.1.9",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "16": "res/icon16.png",
    "48": "res/icon48.png",
    "128": "res/icon128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "downloads",
    "webRequest",
    "contextMenus",
    "storage",
    "notifications",
    "alarms",
    "webRequestBlocking",
    "webNavigation",
    "<all_urls>"
  ],
  "web_accessible_resources": [],
  "background": {
    "scripts": [
      "src/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/web/*",
        "https://*/web/*"
      ],
      "js": [
        "src/mastoinker/cssrule.js",
        "src/mastoinker/context.js",
        "src/mastoinker/column.js",
        "src/mastoinker/column-header.js",
        "src/mastoinker/column-control.js",
        "src/mastoinker/column-content.js",
        "src/mastoinker/timeline.js",
        "src/mastoinker/animate.js",
        "src/mastoinker/storage.js",
        "src/mastoinker/dispatch.js",
        "src/mastoinker/loader.js",
        "src/mastoinker/inject.js",
        "src/mastoinker.js",
        "src/topframe.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ]
}