Quora Marketing Tool

Quora Marketing Tool

Quora content marketing bot / tool helps digital marketers to gain more content upvote and views.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Quora Marketing Tool",
  "description": "Quora content marketing bot / tool helps digital marketers to gain more content upvote and views.",
  "version": "1.1.3",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "/images/bot16.png",
      "32": "/images/bot32.png",
      "48": "/images/bot48.png",
      "128": "/images/bot128.png"
    }
  },
  "icons": {
    "16": "/images/bot16.png",
    "32": "/images/bot32.png",
    "48": "/images/bot48.png",
    "128": "/images/bot128.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "main.js",
        "parser_base.js",
        "parser_home.js",
        "parser_answers.js",
        "parser_search.js",
        "parser_profile.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_page": "script-src 'self'; object-src 'self'"
  }
}