Post Assistant

Post Assistant

Turn your Facebook Post into a mini funnel that automatically tags, replies and messages whatever you want, whenever you want!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Post Assistant",
  "version": "1.0.4",
  "description": "Turn your Facebook Post into a mini funnel that automatically tags, replies and messages whatever you want, whenever you want!",
  "short_name": "PA",
  "icons": {
    "16": "assets/PA_16x16.png",
    "48": "assets/PA_48x48.png",
    "128": "assets/PA_128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*",
        "*://facebook.com/*"
      ],
      "css": [
        "assets/content.css"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_title": "Post Assistant"
  },
  "permissions": [
    "tabs",
    "*://*.facebook.com/*",
    "*://facebook.com/*",
    "storage"
  ],
  "background": {
    "scripts": [
      "js/background.js",
      "js/helper.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "assets/*",
    "js/*",
    "settings.html"
  ],
  "manifest_version": 2
}