git.fiddlerwoaroof.com
manifest.json
f204a43a
 {
 "manifest_version": 2,
 
 "name": "Add to Marrow",
 "description": "This extension adds the current page to your marrow list",
af0e348e
 "version": "1.3",
 
 "icons": {
            "16": "marrow_app_16px.png",
            "32": "marrow_app_32px.png",
            "64": "marrow_app_64px.png",
            "128": "marrow_app_128px.png" },
f204a43a
 
 "browser_action": {
af0e348e
   "default_icon": "marrow_browser_action_19px.png",
f204a43a
   "default_popup": "popup.html"
 },
 
 "permissions": [
   "storage",
   "activeTab",
af0e348e
   "notifications",
   "https://themarrow.is/",
   "https://joinmarrow.com/"
f204a43a
 ],
 
af0e348e
 "background": {
   "scripts": ["jquery.min.js", "background.js"]
 },
 
 "commands": {
   "share_page": {
     "suggested_key": {
       "windows": "Ctrl+Shift+M",
       "mac": "MacCtrl+Shift+M",
       "linux": "Ctrl+Shift+M"
     },
     "description": "share the current page"
   }
 },
                                     
 
 
f204a43a
 "options_ui": {
   "page": "options.html",
   "chrome_style": true
 }}