Bash: the fastest way to turn information into actions with AI

Bash: the fastest way to turn information into actions with AI

Collect, organize, and get help with planning, strategy, and writing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.0.5",
  "action": {},
  "permissions": [
    "scripting",
    "activeTab",
    "tabs",
    "contextMenus",
    "storage",
    "favicon",
    "clipboardWrite"
  ],
  "icons": {
    "16": "src/assets/images/extension-icons/icon16.png",
    "32": "src/assets/images/extension-icons/icon32.png",
    "48": "src/assets/images/extension-icons/icon48.png",
    "128": "src/assets/images/extension-icons/icon128.png"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content-script-iframe.ts-loader-ed65d09f.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_globs": [
        "*localhost*",
        "*127*",
        "*getbash*"
      ]
    },
    {
      "js": [
        "assets/content-script-toggle.ts-loader-af24048f.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_globs": [
        "*localhost*",
        "*127*",
        "*getbash*"
      ]
    },
    {
      "js": [
        "assets/extension-notifier.ts-loader-2b231c9b.js"
      ],
      "matches": [
        "*://localhost/*",
        "https://*.getbash.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "extension.html"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/content-script-iframe.ts-3f030c75.js",
        "assets/bash-logo-round-1963a482.svg",
        "assets/bash-logo-round-aa53f1c4.js",
        "assets/content-script-toggle.ts-99cd815d.js"
      ],
      "use_dynamic_url": true
    },
    {
      "matches": [
        "*://localhost/*",
        "https://*.getbash.com/*"
      ],
      "resources": [
        "assets/types-ad001baa.js",
        "assets/extension-notifier.ts-b4b219b9.js"
      ],
      "use_dynamic_url": true
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "https://*.getbash.com/*"
    ]
  },
  "name": "Bash: the fastest way to turn information into actions with AI",
  "description": "Collect, organize, and get help with planning, strategy, and writing."
}