stackoverflow co-en

stackoverflow co-en

A simple content script injector that makes one-click copy (and open in codepen) for code blocks possible on stackoverflow.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "stackoverflow co-en",
  "description": "A simple content script injector that makes one-click copy (and open in codepen) for code blocks possible on stackoverflow.",
  "version": "0.0.4",
  "permissions": [],
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "icons": {
    "16": "cs.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://stackoverflow.com/questions/*"
      ],
      "js": [
        "cs.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "manifest_version": 2
}