GSama

GSama

GSama

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/icon_32.png",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "contentScripts/content.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*",
        "file://*/*",
        "ftp://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "GSama",
  "homepage_url": "https://github.com/JafarAkhondali/GSama",
  "icons": {
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "19.0",
  "name": "GSama",
  "short_name": "GSama",
  "offline_enabled": true,
  "permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "storage"
  ],
  "version": "0.6"
}