K-Tribes

K-Tribes

K Tribes will donate money to your local community for each extension installation

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "K-Tribes",
  "version": "2.02",
  "description": "K Tribes will donate money to your local community for each extension installation",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "assets/icons/16.png",
      "24": "assets/icons/24.png",
      "32": "assets/icons/32.png",
      "48": "assets/icons/48.png",
      "128": "assets/icons/128.png"
    },
    "default_title": "K Tribes"
  },
  "permissions": [
    "storage",
    "alarms",
    "history",
    "activeTab",
    "webNavigation",
    "<all_urls>"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js",
      "runtime.js",
      "aws.js",
      "myScript.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.mozilla.org/*"
      ],
      "js": [
        "background.js",
        "runtime.js",
        "aws.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "myScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "matches": [
      "<all_urls>"
    ]
  },
  "web_accessible_resources": [
    "myScript.js",
    "injectedScript.js"
  ],
  "icons": {
    "16": "assets/icons/16.png",
    "24": "assets/icons/24.png",
    "32": "assets/icons/32.png",
    "48": "assets/icons/48.png",
    "128": "assets/icons/128.png"
  },
  "content_security_policy": "script-src 'self' https://example.com; object-src 'self'",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}