Web Article Browser

Web Article Browser

Browse online article paragraphs, modify content, display pop-up windows, crop screenshots, delete media advertising content, etc

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_plugin_name__",
  "version": "1.0.1",
  "description": "__MSG_plugin_description__",
  "icons": {
    "16": "imgs/notes-16.png",
    "48": "imgs/notes-48.png",
    "128": "imgs/notes-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "imgs/notes-16.png",
    "default_title": "__MSG_plugin_description__",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.min.js",
        "js/FileSaver.min.js",
        "js/jquery.wordexport.js",
        "js/colorpicker.js",
        "runtime.js",
        "chunk-vendors.js",
        "chunk-common.js",
        "viewsource.js",
        "contentscripts.js"
      ],
      "css": [
        "css/articleSelecter.css"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "imgs/html.png",
        "imgs/html-blue.png",
        "imgs/close.png",
        "imgs/close-blue.png",
        "imgs/word.png",
        "imgs/word-blue.png",
        "imgs/add.png",
        "imgs/add-blue.png",
        "imgs/sub.png",
        "imgs/sub-blue.png",
        "imgs/P.png",
        "imgs/P-blue.png",
        "imgs/collect.png",
        "imgs/collect-blue.png",
        "imgs/copy.png",
        "imgs/copy-blue.png",
        "imgs/line-height.png",
        "imgs/line-height-blue.png",
        "imgs/color.png",
        "imgs/color-blue.png",
        "imgs/background-color.png",
        "imgs/background-color-blue.png",
        "imgs/windows.png",
        "imgs/windows-blue.png",
        "imgs/article-gray.png",
        "imgs/article-blue.png",
        "imgs/article-red.png",
        "imgs/capture.png",
        "imgs/capture-blue.png",
        "imgs/remark.png",
        "imgs/remark-blue.png",
        "imgs/deleteTag.png",
        "imgs/deleteTag-blue.png",
        "imgs/image.png",
        "imgs/image-blue.png",
        "imgs/arrowup.png",
        "imgs/arrowup-blue.png",
        "imgs/arrowdown.png",
        "imgs/arrowdown-blue.png",
        "imgs/file-delete.png",
        "imgs/file-delete-blue.png",
        "imgs/indent.png",
        "imgs/indent-blue.png",
        "css/articleSelecter.css",
        "js/inject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "default_locale": "en",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'"
  }
}