SmarterQueue

SmarterQueue

SmarterQueue saves you hours when scheduling your social posts, and makes it easy to find great content to share.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SmarterQueue",
  "description": "SmarterQueue saves you hours when scheduling your social posts, and makes it easy to find great content to share.",
  "version": "1.0.0",
  "minimum_chrome_version": "101",
  "homepage_url": "https://smarterqueue.com/",
  "action": {
    "default_icon": {
      "16": "images/favicon-16x16.png",
      "48": "images/favicon-48x48.png",
      "128": "images/favicon-128x128.png"
    },
    "default_title": "Share this page with SmarterQueue"
  },
  "icons": {
    "16": "images/favicon-16x16.png",
    "48": "images/favicon-48x48.png",
    "128": "images/favicon-128x128.png"
  },
  "permissions": [
    "activeTab",
    "declarativeNetRequestWithHostAccess"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/common.css",
        "images/img-sq-share-button.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.smarterqueue.com/*"
    ]
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "host_permissions": [
    "*://*.smarterqueue.com/*"
  ],
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/common.css"
      ],
      "js": [
        "jquery-3.5.1.min.js",
        "content_script.js",
        "helpers.js"
      ],
      "run_at": "document_end"
    }
  ]
}