SG.hu Tuning

SG.hu Tuning

A browser extension for the popular sg.hu site

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "3.9.14",
  "author": "JimMorrison723",
  "short_name": "__MSG_appShortName__",
  "manifest_version": 2,
  "default_locale": "hu",
  "icons": {
    "16": "images/icons/icon-16.png",
    "128": "images/icons/icon-128.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://sg.hu/*"
      ],
      "css": [
        "styles/content.css",
        "styles/cleditor.css",
        "styles/settings.css"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "permissions": [
    "cookies",
    "notifications",
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    "images/*/*.png"
  ]
}