StoryChief - Twitter Thread Designer

StoryChief - Twitter Thread Designer

Convert Twitter Threads into beautiful slideshows. A new way to feed your Instagram and Linkedin accounts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Convert Twitter Threads into beautiful slideshows. A new way to feed your Instagram and Linkedin accounts.",
  "version": "0.5",
  "manifest_version": 3,
  "permissions": [],
  "name": "StoryChief - Twitter Thread Designer",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://*.twitter.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png",
        "visual.jpg"
      ],
      "matches": []
    }
  ]
}