Intérêts des parlementaires

Cette extension affiche les liens d’intérêt des parlementaires suisses grâce aux données de Lobbywatch.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "default_locale": "fr",
  "version": "1.4",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_title__"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.letemps.ch/*",
        "https://www.rts.ch/*",
        "https://www.20min.ch/*",
        "https://www.lenouvelliste.ch/*",
        "https://www.tdg.ch/*",
        "https://www.bluewin.ch/fr/infos/*",
        "https://www.arcinfo.ch/*",
        "https://www.lacote.ch/*",
        "https://www.24heures.ch/*",
        "https://www.blick.ch/*",
        "https://www.beobachter.ch/*",
        "https://www.handelszeitung.ch/*",
        "https://www.srf.ch/*",
        "https://www.tagesanzeiger.ch/*",
        "https://www.bernerzeitung.ch/*",
        "https://www.bazonline.ch/*",
        "https://www.derbund.ch/*",
        "https://www.woz.ch/*",
        "https://www.nzz.ch/*",
        "https://www.infosperber.ch/*"
      ],
      "exclude_matches": [
        "https://*/admin/*"
      ],
      "js": [
        "tippy.all.min.js",
        "jquery-3.3.1.min.js",
        "contentScript.js"
      ],
      "css": [
        "contentStyle.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "icon32.png"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      },
      "description": "Shortcut to toggle the popup"
    }
  },
  "permissions": [
    "activeTab",
    "storage",
    "https://lobbywatch.ch/",
    "https://labs.letemps.ch/",
    "https://fonts.googleapis.com/"
  ]
}