Examine source code of Naruto theme pick-newtab. 1080HD wallpaper

Inspect and view changes in Naruto theme pick-newtab. 1080HD wallpaper 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": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.0.9",
  "default_locale": "zh_CN",
  "content_security_policy": "script-src 'self'; object-src 'self';",
  "minimum_chrome_version": "81.0.0",
  "optional_permissions": [
    "https://cn.bing.com/"
  ],
  "chrome_url_overrides": {
    "newtab": "index.html#/"
  },
  "browser_action": {
    "default_icon": "icons/128.png",
    "default_title": "__MSG_name__",
    "default_popup": "index.html#/popup"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.picknewtab.com/*"
      ],
      "js": [
        "js/foreground.js"
      ]
    }
  ],
  "icons": {
    "128": "icons/icon.png"
  },
  "background": {
    "page": "index.html#/background",
    "persistent": true
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}