Será Ley

Será Ley

Identifica a los funcionarios que votaron a favor con un 💚 y a los que no con un 💩

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Será Ley",
  "version": "2.1",
  "manifest_version": 2,
  "description": "Identifica a los funcionarios que votaron a favor con un 💚 y a los que no con un 💩",
  "homepage_url": "https://seraleyaddon.wixsite.com/home",
  "options_ui": {
    "chrome_style": true,
    "page": "settings.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/inject.min.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "*://developer.mozilla.org/*",
        "*://twitter.com/intent/*"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_title": "SeraLey",
    "default_icon": "icon48.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage"
  ]
}