Niche Voyage

Niche Voyage

Niche Voyage gives you the power to quickly generate articles, long format paragraphs, nlp friendly formats of your 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": "Niche Voyage",
  "version": "1.2",
  "description": "",
  "icons": {
    "36": "icons/icon-36.png",
    "48": "icons/icon-48.png",
    "72": "icons/icon-72.png",
    "96": "icons/icon-96.png",
    "144": "icons/icon-144.png",
    "192": "icons/icon-192.png",
    "512": "icons/icon-512.png"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "main.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "action": {
    "default_title": "Paraphrase Tool",
    "default_icon": "icons/icon-48.png",
    "default_popup": "popup/content.html"
  }
}