HubTodo

HubTodo

A simple todo app that adds the selected text. A task suddenly asked to be done via chat, a ticket suddenly assigned, a sentence…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "HubToDo",
  "name": "HubTodo",
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "manifest_version": 2,
  "version": "1.0.1",
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "HubToDo",
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "/static/js/background_script.js"
    ]
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "omnibox": {
    "keyword": "todo"
  }
}