StarterCSS

StarterCSS

Rapidly implement CSS layouts, effects, and designs without parsing through online docs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "StarterCSS",
  "description": "Rapidly implement CSS layouts, effects, and designs without parsing through online docs",
  "version": "0.0.6",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Open the popup"
  },
  "icons": {
    "16": "starter_css.png",
    "48": "starter_css.png",
    "128": "starter_css.png"
  },
  "devtools_page": "devtools-background.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./content-script.js"
      ]
    }
  ]
}