20Paths - Make How Do I ...? topics fast

20Paths - Make How Do I ...? topics fast

Create and Share bite sized How Do I ...? topic in under a minute. Record Interaction with webapp as annotated screenshot.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "20Paths - Make How Do I ...? topics fast",
  "version": "0.0.2",
  "icons": {
    "16": "assets/icons/20p_logo_dark_16.png",
    "32": "assets/icons/20p_logo_dark_32.png",
    "48": "assets/icons/20p_logo_dark_48.png",
    "128": "assets/icons/20p_logo_dark_128.png"
  },
  "description": "Create and Share bite sized How Do I ...? topic in under a minute. Record Interaction with webapp as annotated screenshot.",
  "homepage_url": "https://20paths.com",
  "short_name": "HowDoI...?",
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://*.googleapis.com  https://*.google.com; object-src 'self'",
  "author": "team20paths",
  "minimum_chrome_version": "49",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icons/20p_logo_dark_16.png",
      "32": "assets/icons/20p_logo_dark_32.png",
      "48": "assets/icons/20p_logo_dark_48.png",
      "128": "assets/icons/20p_logo_dark_128.png"
    },
    "default_title": "How Do I ... ?",
    "chrome_style": false
  },
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "/*.*"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "webNavigation",
    "<all_urls>"
  ],
  "optional_permissions": [],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ],
      "all_frames": true
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}