Pride Flagging

Pride Flagging

Fight online homophobia word for word.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "1.1",
  "manifest_version": 2,
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "content.js",
        "jquery-replacetext-plugin.js"
      ],
      "run_at": "document_end",
      "css": [
        "style.css"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "__MSG__extName"
  },
  "options_page": "options.html",
  "permissions": [
    "https://twitter.com/*",
    "storage",
    "activeTab",
    "tabs"
  ],
  "background": {
    "scripts": [
      "jquery-3.4.1.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "images/*.png",
    "content.js",
    "popup.html",
    "images/prideflag.png",
    "popup-style.css"
  ],
  "icons": {
    "16": "images/prideflag16.png",
    "32": "images/prideflag32.png",
    "48": "images/prideflag48.png",
    "128": "images/prideflag128.png"
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}