Naru

Naru

Naru is a prioritization board that helps supercharge your focus and gets you to tab 0.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Naru",
  "version": "0.1.1",
  "description": "Naru is a prioritization board that helps supercharge your focus and gets you to tab 0.",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "notifications",
    "http://*/",
    "https://*/"
  ],
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "browser_action": {
    "name": "Toggle Naru"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "index.html",
    "hotkeys.min.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "iframe.js",
        "hotkeys.min.js"
      ]
    }
  ],
  "short_name": "Naru"
}