AuthoredUp – No. 1 LinkedIn ™ Content Tool

AuthoredUp – No. 1 LinkedIn ™ Content Tool

Boost your LinkedIn ™ growth with the secure platform designed for creators. Create and analyze your content in clicks, not hours.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AuthoredUp – No. 1 LinkedIn ™ Content Tool",
  "description": "Boost your LinkedIn ™ growth with the secure platform designed for creators. Create and analyze your content in clicks, not hours.",
  "version": "4.5.4",
  "icons": {
    "16": "images/logo-16.png",
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "AuthoredUp – No. 1 LinkedIn ™ Content Tool",
    "default_icon": {
      "16": "images/logo-16.png",
      "24": "images/logo-24.png",
      "32": "images/logo-32.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "js/host_preload_script.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "js/vendor.js",
        "js/host_script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/guest_script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "*.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background_script.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.linkedin.com/*"
  ]
}