Origano - Surf and Earn

Origano - Surf and Earn

Enhance your browsing experience with Origano banners and earn while you surf the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0.13",
  "name": "Origano - Surf and Earn",
  "short_name": "Origano",
  "description": "Enhance your browsing experience with Origano banners and earn while you surf the web.",
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": "icon-34.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://api.origano.xyz/*",
      "https://dashboard.origano.xyz/*"
    ]
  },
  "permissions": [
    "storage",
    "alarms",
    "tabGroups",
    "tabs",
    "webNavigation",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*.bing.com/*"
  ]
}