Calc

Calc

Calc is a simple online calculator that saves your time. You can use Calc right in your browser without opening any additional tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Calc",
  "version": "1.0.14",
  "description": "__MSG_extensionDescription__",
  "background": {
    "scripts": [
      "background/index.js"
    ]
  },
  "default_locale": "en",
  "browser_action": {
    "default_title": "Calc",
    "default_popup": "popup/index.html"
  },
  "options_ui": {
    "page": "options/index.html"
  },
  "devtools_page": "devtools/index.html",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "notifications",
    "webNavigation",
    "contextMenus",
    "management",
    "alarms",
    "search",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "contents/timer-push/alarm.mp3"
  ]
}