Tilnote Saver (TILNOTE web clipper and side notes)

Tilnote Saver (TILNOTE web clipper and side notes)

Save selected text, image, chatgpt chat to tilnote. Use side notes to take notes while browsing the web.

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_extensionName__",
  "version": "2.3",
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "action": {
    "default_title": "Tilnote Saver",
    "default_popup": "/popup.html"
  },
  "permissions": [
    "contextMenus",
    "notifications",
    "storage"
  ],
  "background": {
    "service_worker": "/build/background-90e16f5e.js",
    "type": "module"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/build/content-79667c1d.js"
      ],
      "css": [
        "styles/content_styles.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/notification-icon.png",
        "images/home.svg",
        "styles/content_styles.css",
        "images/code.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsbyTgP7NoJMjqP0CFfpRTQCCorBynDzob+iMpjP8WyaW/Pl7p+JHG1bLgKhNwVoUqRGFly3pja9E1YBKiWrXnd5N7VlEPiSVp2/YHBWAdjzJbPWEvb6BRJe/pOP0v9UjFGbl5fKEQQO0zp9Ha7Z8cc34ed1KwIDBQr4Ko19oNwswJAm9aCrgDLQO1s3AHrHYA+C7IIYJFioy59oO0PoHe4eMJpgqevtr6XH91NyNZmXzP0thEOy/hM7f/yyq38cSa5UsKNYbbymLp3akA3efoaG95a8TbYD9fEXCMhQf5+h2Z3trFgAbvV4w0s4y9ifYYZl/Hvu58HVcDeMPGv10QwIDAQAB"
}