roll

roll

Roll any-sided dice in Chrome's Omnibox using dice notation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "roll",
  "version": "2.4.0",
  "manifest_version": 2,
  "description": "Roll any-sided dice in Chrome's Omnibox using dice notation.",
  "omnibox": {
    "keyword": "roll"
  },
  "icons": {
    "16": "assets/images/roll16.png",
    "48": "assets/images/roll48.png",
    "128": "assets/images/roll128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [],
  "web_accessible_resources": [
    "assets/*",
    "scripts/*.js",
    "roll.html"
  ],
  "browser_action": {
    "default_title": "Roll",
    "default_icon": {
      "16": "assets/images/roll16.png",
      "48": "assets/images/roll48.png",
      "128": "assets/images/roll128.png"
    },
    "default_popup": "roll.html"
  }
}