Lilo - Fund social and environmental projects with your internet searches

Lilo - Fund social and environmental projects with your internet searches

This extension sets your search engine and homepage to Lilo.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_store_title_new__",
  "description": "__MSG_store_shortdesc_new__",
  "version": "3.0.0",
  "default_locale": "fr",
  "homepage_url": "https://www.lilo.org",
  "icons": {
    "16": "/icons/16x.png",
    "32": "/icons/32x.png",
    "40": "/icons/40x.png",
    "64": "/icons/64x.png",
    "128": "/icons/128x.png"
  },
  "action": {
    "default_title": "__MSG_browser_action_hover__",
    "default_icon": {
      "16": "/icons/16x.png",
      "32": "/icons/32x.png",
      "40": "/icons/40x.png",
      "64": "/icons/64x.png",
      "128": "/icons/128x.png"
    },
    "browser_style": false
  },
  "chrome_settings_overrides": {
    "homepage": "https://search.lilo.org/?plugin=lilose",
    "search_provider": {
      "name": "Lilo, Moteur et solidaire",
      "keyword": "www.lilo.org",
      "search_url": "https://search.lilo.org/search?q={searchTerms}&plugin=lilose",
      "favicon_url": "https://search.lilo.org/favicon.ico",
      "suggest_url": "https://search.lilo.org/api/?service=suggestions&action=suggest&q={searchTerms}&l=__MSG_@@ui_locale__",
      "encoding": "UTF-8",
      "is_default": true
    }
  },
  "chrome_url_overrides": {
    "newtab": "newtab/newtab.html"
  },
  "manifest_version": 3,
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.lilo.org/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "*://*.lilo.org/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.lilo.org/*"
    ]
  }
}