Copy School Sidekick

Copy School Sidekick

Exclusively for students of Copy School by Copyhackers! The easiest way to get step-by-step copywriting training when you need it most. For your specific copy asset, task and target. So you can deliver better marketing results.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Copy School Sidekick",
  "version": "0.1.1",
  "author": "Steven Luke",
  "icons": {
    "128": "icon-128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://docs.google.com/*"
      ],
      "js": [
        "js/inject.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon-128.png"
  },
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "web_accessible_resources": [
    "embedded.html"
  ]
}