Spongy

Spongy

A Google Chrome eyedropper for IBM Design Language's colors and grades.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Spongy",
  "author": "Diego Hernandez",
  "version": "1.0.0",
  "description": "A Google Chrome eyedropper for IBM Design Language's colors and grades.",
  "browser_action": {
    "default_icon": {
      "16": "imgs/icon_16.png",
      "24": "imgs/icon_24.png",
      "32": "imgs/icon_32.png"
    },
    "default_title": "IBM Design Spongy",
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "activeTab",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "imgs/icon_16.png",
    "48": "imgs/icon_48.png",
    "128": "imgs/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/main.js"
      ],
      "css": [
        "styles/main.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "fonts/*"
  ]
}