Pin Favorites and New Tab

Pin Favorites and New Tab

Easy to use favorites manager and new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "short_name": "Pin Favorite",
  "version": "0.2.1",
  "description": "__MSG_appDesc__",
  "manifest_version": 3,
  "default_locale": "en",
  "chrome_url_overrides": {
    "newtab": "new_tab.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "resource/images/favorites_16.png",
      "32": "resource/images/favorites_32.png",
      "48": "resource/images/favorites_48.png",
      "128": "resource/images/favorites_128.png"
    }
  },
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "bookmarks",
    "favicon",
    "history",
    "search",
    "storage",
    "tabs",
    "topSites"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "resource/images/favorites_16.png",
    "32": "resource/images/favorites_32.png",
    "48": "resource/images/favorites_48.png",
    "128": "resource/images/favorites_128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}