OS UI Validator

OS UI Validator

This plugin helps optimizing the code by searching for inline-styles, empty containers, and others...

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "OS UI Validator",
  "version": "0.2.1",
  "description": "This plugin helps optimizing the code by searching for inline-styles, empty containers, and others...",
  "short_name": "OS UI Validator",
  "author": "Hi Interactive",
  "homepage_url": "https://www.hi-interactive.com/",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/hiframe.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "iframe.html",
        "css/hiframe.css",
        "icons/24.png",
        "icons/iconPrimary.png",
        "icons/iconGray.png",
        "icons/Logo.png",
        "icons/Hi.png"
      ],
      "matches": [
        "*://*/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "24": "icons/24.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "96": "icons/96.png",
    "128": "icons/128.png"
  },
  "default_locale": "en",
  "action": {
    "default_title": "Run OS UI Validator",
    "default_icon": {
      "16": "icons/16.png"
    }
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_security_policy": {
    "extension_pages": "default-src 'self'; script-src 'self'; connect-src 'self' https://api.ipify.org; object-src 'self'",
    "sandbox": "sandbox allow-scripts"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "offline_enabled": true,
  "minimum_chrome_version": "103",
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "identity",
    "identity.email"
  ]
}