STL Design Scene

STL Design Scene

A Feed of Design Inspiration from Around STL.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "STL Design Scene",
  "description": "A Feed of Design Inspiration from Around STL.",
  "version": "0.2.2",
  "version_name": "0.2.2 Beta",
  "action": {
    "default_popup": "index.html"
  },
  "icons": {
    "16": "icons/s16.png",
    "32": "icons/s32.png",
    "64": "icons/s64.png",
    "128": "icons/s128.png"
  },
  "chrome_url_overrides": {
    "newtab": "feed.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery-3.7.0.min.js",
        "js/whatfont_core.js",
        "js/measure_tool.js",
        "js/content_script.js"
      ],
      "css": [
        "css/whatfont.css",
        "css/measure_tool.css"
      ]
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "https://typekit.com/",
    "http://localhost.com/"
  ]
}