Advertisement
Tryah85

manifest.json- ChromeExstension

Aug 9th, 2013
2,093
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.   "manifest_version": 2,
  3.  
  4.   "name": "Developers Automatic Reload",
  5.   "description": "This extension automatically reloads the browser when window is selected or focused on the screen. Saves time by not pressing ctrl+r (PC) cmd+r (MAC), or reload button everytime the developer checks an update on code",
  6.   "version": "1.0",
  7.  
  8.   "permissions": [
  9.      "activeTab",
  10.      "tabs"
  11.         ],
  12.      "icons" : { "16": "icon_16.png",
  13.                 "48": "icon_48.png",
  14.                "128": "icon_128.png" },
  15.  
  16.   "browser_action": {
  17.     "default_icon": "icon.png",
  18.     "default_popup": "reload.js"
  19.   }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement