GAFE Force Copy - Curt Schleibaum & ETH

GAFE Force Copy - Curt Schleibaum & ETH

Automatically produces a force copy link for docs, sheets, and slides.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GAFE Force Copy - Curt Schleibaum & ETH",
  "version": "1.2.1",
  "manifest_version": 2,
  "description": "Automatically produces a force copy link for docs, sheets, and slides.",
  "permissions": [
    "webRequest",
    "storage",
    "webRequestBlocking",
    "<all_urls>",
    "tabs"
  ],
  "background": {
    "scripts": [
      "redirect.js"
    ]
  },
  "icons": {
    "16": "ETHFC19.png",
    "48": "ETHFC48.png",
    "128": "ETHFC128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/document*",
        "http://docs.google.com/document*"
      ],
      "js": [
        "redirect.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "ETHFC19.png",
    "default_popup": "window.html",
    "default_title": "EdTech Heroes Force Copy"
  }
}