Vaporwavify

Vaporwavify

Setting the font of the page to be in the Vaporwave Aesthetic style. There's no specific font actually, so I had to tweak it a bit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Vaporwavify",
  "version": "1.2resigned1",
  "description": "Setting the font of the page to be in the Vaporwave style",
  "icons": {
    "48": "icons/icon.png"
  },
  "browser_action": {
    "default_icon": "icons/icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "webRequest"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{7178abe1-9519-4376-aa15-9070d479e640}"
    }
  }
}