Apptr YouTube Comments Analyzer

Apptr YouTube Comments Analyzer

Easily Analyze Youtube Comments. Discover new content ideas, create videos subscribers want and transform comments into more revenue

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Apptr YouTube Comments Analyzer",
  "description": "Easily Analyze Youtube Comments. Discover new content ideas, create videos subscribers want and transform comments into more revenue",
  "version": "0.0.1.14",
  "manifest_version": 3,
  "background": {
    "service_worker": "./lib/background.js",
    "type": "module"
  },
  "action": {
    "default_title": "Apptr",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "all_frames": true,
      "css": [],
      "js": [
        "./lib/main.js"
      ]
    }
  ],
  "icons": {
    "16": "logos/16x16.png",
    "32": "logos/32x32.png",
    "48": "logos/48x48.png",
    "128": "logos/128x128.png"
  },
  "host_permissions": [
    "https://api.staging.apptr.co/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/error.png",
        "images/robot.png",
        "images/coming-soon.png",
        "images/start-analyze.png",
        "images/search-placeholder.png",
        "images/empty-placeholder-0.png"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}