SkillMapper: Social Highlighter & Bookmarker

SkillMapper: Social Highlighter & Bookmarker

Highlight articles and YouTube videos, organize your learning journey, and share insights with a like-minded community of learners!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "SkillMapper",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "9.17.24",
  "manifest_version": 3,
  "action": {
    "default_title": "SkillMapper"
  },
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "save_to_collections": {
      "suggested_key": {
        "default": "Alt+Shift+S",
        "mac": "Alt+Shift+S"
      },
      "description": "Save page in your Library"
    },
    "open_extension": {
      "suggested_key": {
        "default": "Alt+Shift+O",
        "mac": "Alt+Shift+O"
      },
      "description": "Open SkillMapper's extension"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "content-styles.css"
      ],
      "js": [
        "content-scripts.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/fonts/*",
        "/img/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "contextMenus",
    "identity",
    "scripting"
  ],
  "externally_connectable": {
    "matches": [
      "https://*/*"
    ]
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "128": "logo.png"
  }
}