Examine source code of 블랙 브라우저

Inspect and view changes in 블랙 브라우저 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
{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "블랙 브라우저",
  "version": "0.1.2",
  "manifest_version": 2,
  "description": "나만의(내맘대로 내뜻대로) 사이트를",
  "icons": {
    "16": "icon/community_16.ico",
    "32": "icon/community_32.ico",
    "48": "icon/community_48.ico",
    "64": "icon/community_64.png",
    "128": "icon/community_128.png"
  },
  "background": {
    "scripts": [
      "js/defaultData.js",
      "js/background.js"
    ]
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "icon/community_64.png",
    "default_title": "블랙 브라우저",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.bbs.sports.media.daum.net/*",
        "https://*.bbs.sports.media.daum.net/*"
      ],
      "css": [],
      "js": [
        "js/jquery-min.js",
        "js/daumExtension.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "contextMenus",
    "http://*.daum.net/*",
    "https://*.daum.net/*"
  ]
}