Save and search with Stacks

Save and search with Stacks

Stacks is your personal search engine. Recall bookmarks automatically.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Save and search with Stacks",
  "description": "Stacks is your personal search engine. Recall bookmarks automatically. ",
  "version": "2.5.3",
  "action": {
    "default_popup": "popup.html",
    "default_title": "Stacks - save, search and share bookmarks instantly",
    "default_icon": "logo.png"
  },
  "permissions": [
    "favicon",
    "activeTab",
    "tabs",
    "bookmarks",
    "storage",
    "contextMenus",
    "scripting",
    "webRequest"
  ],
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "StackSearchCommand": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "mac": "Shift+Command+K"
      },
      "description": "Search with Stacks"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://betterstacks.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-2.1.3.min.js",
        "contentScriptPage.js",
        "saveAllTabs.js",
        "annotationCommentsScript.js",
        "annotationCommentsPage.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "githubScript.js"
      ]
    },
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "twitterScript.js"
      ]
    },
    {
      "matches": [
        "https://www.instagram.com/*"
      ],
      "js": [
        "instagramScript.js"
      ]
    },
    {
      "js": [
        "contentScriptForTwitter.js"
      ],
      "matches": [
        "https://twitter.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "contentScriptForLinkedIn.js"
      ],
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "linkedInSciptPage.js"
      ]
    },
    {
      "matches": [
        "https://www.facebook.com/*"
      ],
      "js": [
        "facebookSciptPage.js"
      ]
    },
    {
      "matches": [
        "https://www.instagram.com/*"
      ],
      "js": [
        "contentScriptForInstagram.js"
      ]
    },
    {
      "js": [
        "contentScriptForYoutube.js"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "https://twitter.com/*",
    "https://www.linkedin.com/*",
    "https://github.com/*",
    "https://www.instagram.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline'"
  }
}