Content Repurposing by Automata

Content Repurposing by Automata

Repurpose Blog content and Youtube videos as social posts directly from your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Content Repurposing by Automata",
  "version": "1.0.3",
  "description": "Repurpose Blog content and Youtube videos as social posts directly from your browser.",
  "permissions": [],
  "host_permissions": [
    "https://byautomata.io/*",
    "https://auth.byautomata.io/*"
  ],
  "icons": {
    "16": "icons/automata-repurpose-logo-16px16px.png",
    "48": "icons/automata-repurpose-logo-48px48px.png",
    "128": "icons/automata-repurpose-logo-128px128px.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "linkedinPostUtil.js"
      ],
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "run_at": "document_idle",
      "css": [
        "css/font-awesome.min.css",
        "css/linkedinPost.css",
        "css/bufferLinkedinPost.css",
        "css/hootsuiteLinkedinPost.css",
        "css/twitterPost.css",
        "css/bufferTwitterPost.css",
        "css/hootsuiteTwitterPost.css"
      ]
    }
  ],
  "manifest_version": 3
}