Skip to content

Instantly share code, notes, and snippets.

@Weiyuan-Lane
Created January 20, 2019 14:51
Show Gist options
  • Save Weiyuan-Lane/7ccd71a6690c9fe554e2259649ed4dcf to your computer and use it in GitHub Desktop.
Save Weiyuan-Lane/7ccd71a6690c9fe554e2259649ed4dcf to your computer and use it in GitHub Desktop.
Chrome Extension Manifest Example
{
"name": "Staff App",
"description": "Internal buttons and controls only for staff",
"author": "Weiyuan Liu",
"version": "0.0.1",
"manifest_version": 1,
"background": {
"scripts" : [
"build/browser-action.js",
"build/context-menu.js"
],
"persistent": false
},
"permissions": [
"contextMenus",
"tabs",
"activeTab"
],
"browser_action": {
"default_title": "Staff App",
"default_icon": "public/images/logos/staff-32.png",
"default_popup": "public/views/popup.html"
},
"icons": {
"16": "public/images/logos/staff-16.png",
"32": "public/images/logos/staff-32.png",
"48": "public/images/logos/staff-48.png",
"128": "public/images/logos/staff-128.png"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment