Copycat

Copycat

Copy content from web powerful than ever before.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extensionName__",
  "author": "BlackGlory",
  "version": "3.1.5",
  "manifest_version": 3,
  "minimum_chrome_version": "109",
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "16": "assets/images/icon-16.png",
    "32": "assets/images/icon-32.png",
    "48": "assets/images/icon-48.png",
    "64": "assets/images/icon-64.png",
    "128": "assets/images/icon-128.png"
  },
  "commands": {
    "commandTabTitle": {
      "description": "__MSG_commandTabTitle__"
    },
    "commandTabLinkAsPlainText": {
      "description": "__MSG_commandTabLinkAsPlainText__"
    },
    "commandTabLinkAsRichText": {
      "description": "__MSG_commandTabLinkAsRichText__"
    },
    "commandTabLinkAsHTML": {
      "description": "__MSG_commandTabLinkAsHTML__"
    },
    "commandTabLinkAsMarkdown": {
      "description": "__MSG_commandTabLinkAsMarkdown__"
    },
    "commandTabLinkAsOrgMode": {
      "description": "__MSG_commandTabLinkAsOrgMode__"
    },
    "commandTabLinkAsAsciiDoc": {
      "description": "__MSG_commandTabLinkAsAsciiDoc__"
    },
    "commandTabLinkAsBBCode": {
      "description": "__MSG_commandTabLinkAsBBCode__"
    },
    "commandSelectionAsPlainText": {
      "description": "__MSG_commandSelectionAsPlainText__"
    },
    "commandSelectionAsConcatenatedPlainText": {
      "description": "__MSG_commandSelectionAsConcatenatedPlainText__"
    },
    "commandSelectionAsJSON": {
      "description": "__MSG_commandSelectionAsJSON__"
    },
    "commandSelectionAsMarkdown": {
      "description": "__MSG_commandSelectionAsMarkdown__"
    },
    "commandSelectionAsHTML": {
      "description": "__MSG_commandSelectionAsHTML__"
    },
    "commandSelectionAsHTMLWithoutAttributes": {
      "description": "__MSG_commandSelectionAsHTMLWithoutAttributes__"
    },
    "commandSelectionAsCleanHTML": {
      "description": "__MSG_commandSelectionAsCleanHTML__"
    },
    "commandSelectionAsBBCode": {
      "description": "__MSG_commandSelectionAsBBCode__"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "js": [
        "copycat.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "__MSG_extensionActionTitle__",
    "default_popup": "options.html",
    "default_icon": {
      "16": "assets/images/icon-16.png",
      "32": "assets/images/icon-32.png",
      "48": "assets/images/icon-48.png",
      "64": "assets/images/icon-64.png",
      "128": "assets/images/icon-128.png"
    }
  },
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "contextMenus",
    "scripting",
    "clipboardWrite",
    "offscreen",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.js.map"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}