Jisū

Jisū

Count words and characters in selected text.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "version": "3.5.1",
  "description": "__MSG_description__",
  "icons": {
    "16": "icons/icon16.png",
    "24": "icons/icon24.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png",
    "256": "icons/icon256.png"
  },
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "24": "icons/icon24.png",
      "32": "icons/icon32.png",
      "48": "icons/icon48.png",
      "64": "icons/icon64.png",
      "96": "icons/icon96.png",
      "128": "icons/icon128.png",
      "256": "icons/icon256.png"
    },
    "default_title": "__MSG_defaultTitle__"
  },
  "background": {
    "service_worker": "sw.js"
  },
  "commands": {
    "execute-count": {
      "description": "__MSG_executeCountCharacter__"
    },
    "execute-count-word": {
      "description": "__MSG_executeCountWord__"
    },
    "execute-count-zauto": {
      "description": "__MSG_executeCountAuto__"
    },
    "execute-speech": {
      "description": "__MSG_executeSpeechCharacter__"
    },
    "execute-speech-word": {
      "description": "__MSG_executeSpeechWord__"
    },
    "execute-speech-zauto": {
      "description": "__MSG_executeSpeechAuto__"
    },
    "execute-z001-copy": {
      "description": "__MSG_executeCopy__"
    },
    "toggle-autocount": {
      "description": "__MSG_toggleAutocount__"
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "scripting",
    "storage",
    "tts",
    "declarativeContent"
  ],
  "offline_enabled": true,
  "default_locale": "en"
}