Examine source code of SEO Nofollow Links Highlighter

Inspect and view changes in SEO Nofollow Links Highlighter source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "applications": {
    "gecko": {
      "id": "seonofollowlinkshighlighter@example.org"
    }
  },
  "name": "SEO Nofollow links highlighter",
  "version": "2.1resigned1",
  "description": "Highlight all nofollow links on any site you want. Excellent for SEO purposes.",
  "developer": {
    "name": "IdeaMAX",
    "url": "http://ideamax.eu/"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "images/icon-016.png",
    "19": "images/icon-019.png",
    "32": "images/icon-032.png",
    "38": "images/icon-038.png",
    "48": "images/icon-048.png",
    "64": "images/icon-064.png",
    "128": "images/icon-128.png"
  },
  "browser_action": {
    "default_title": "SEO Nofollow links highlighter",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon-016.png",
      "19": "images/icon-019.png",
      "32": "images/icon-032.png",
      "38": "images/icon-038.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "includes/content.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}