Tabaku | A Tab for Weebs

Tabaku | A Tab for Weebs

The ULTIMATE new tab dashboard, for weebs by weebs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tabaku | A Tab for Weebs",
  "description": "The ULTIMATE new tab dashboard, for weebs by weebs.",
  "version": "1.0.0",
  "icons": {
    "128": "icon_128.png"
  },
  "permissions": [
    "tabs"
  ],
  "browser_action": {
    "default_icon": "icon_128.png"
  },
  "chrome_url_overrides": {
    "newtab": "focus.html"
  },
  "background": {
    "scripts": [
      "./scripts/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "css": [
        "style.css"
      ],
      "js": [
        "jquery.min.js",
        "./scripts/main.js"
      ],
      "all_frames": true,
      "matches": [
        "http://*/*"
      ]
    }
  ]
}