Examine source code of Background Select +Save Config

Inspect and view changes in Background Select +Save Config 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,
  "name": "Background Selector",
  "version": "1.1resigned1",
  "description": "Allows the user to customize the background color and pattern of their sites. Also saves their preferences via cookies where possible.",
  "icons": {
    "48": "icons/color-48.png"
  },
  "permissions": [
    "tabs",
    "cookies",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "popup/images/bullseyes.png",
    "popup/images/starring.png",
    "popup/images/subtle.png",
    "popup/images/tactilenoise.png",
    "popup/images/triangles.png",
    "popup/images/triangles2.png",
    "popup/images/washi.png",
    "popup/images/whitey.png"
  ],
  "browser_action": {
    "default_icon": {
      "32": "icons/color-32.png"
    },
    "default_title": "Background Selector",
    "default_popup": "popup/color.html"
  },
  "background": {
    "scripts": [
      "background_scripts/color.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/updatebg.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{d2e9c1b6-0dbe-4aac-a464-5e92cb25c1f9}"
    }
  }
}