MagicBrief - Save Facebook & TikTok ads

MagicBrief - Save Facebook & TikTok ads

Save ad inspiration straight from the Facebook & Tiktok ad libraries, then rework them in your own storyboards.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "background": {
    "service_worker": "src/pages/background.js"
  },
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://ads.tiktok.com/*"
      ],
      "all_frames": true,
      "js": [
        "src/pages/tiktokContent.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://library.tiktok.com/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "src/pages/tiktokLibraryContent.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://*.facebook.com/ads/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "src/pages/facebookContent.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://*.facebook.com/ads/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "world": "MAIN",
      "js": [
        "src/pages/facebookInjectionScript.js"
      ]
    },
    {
      "matches": [
        "https://*.tiktok.com/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "src/pages/tiktokMainContent.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "https://*.tiktok.com/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "world": "MAIN",
      "js": [
        "src/pages/tiktokMainInjectionScript.js"
      ]
    }
  ],
  "action": {
    "default_popup": "src/pages/Popup/index.html",
    "default_icon": {
      "48": "icon-48.png",
      "128": "icon-128.png"
    }
  },
  "version": "1.6.1",
  "permissions": [
    "storage"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self' 'https://apis.google.com/' 'https://www.gstatic.com/' 'https://*.firebaseio.com' 'https://www.googleapis.com' 'https://ajax.googleapis.com'; object-src 'self'"
  },
  "name": "MagicBrief - Save Facebook & TikTok ads",
  "description": "Save ad inspiration straight from the Facebook & Tiktok ad libraries, then rework them in your own storyboards.",
  "externally_connectable": {
    "matches": [
      "*://*.magicbrief.com/*"
    ]
  }
}