SPUN

SPUN

Hi-lights links that have rel= sponsored, ugc or nofollow

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SPUN",
  "description": "Hi-lights links that have rel= sponsored, ugc or nofollow ",
  "version": "0.3",
  "author": "Steve Tucker",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "spun.css"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon32.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "images/*"
  ]
}