Great tool. RESPECT!!
Extensionizr: Chrome extension boilerplate generator
21–28 of 28 posts
Re: Extensionizr: Chrome extension boilerplate generator
#22suggestion: package oauth support too http://developer.chrome.com/extensions/tut_oauth.html
Re: Extensionizr: Chrome extension boilerplate generator
#23Cool! I made https://github.com/mahemoff/chrome-boilerplate a couple of years ago and haven't had time to keep it up to date with the latest APIs. This is comprehensive and a slick UI too. Congrats.
Re: Extensionizr: Chrome extension boilerplate generator
#24Re: Extensionizr: Chrome extension boilerplate generator
#25Are there any tools for building cross-browser extensions? What would be really useful is a tool that can help you build a Chrome extension, Firefox extension, and Safari Extension.
Re: Extensionizr: Chrome extension boilerplate generator
#26One comment though, I would try to avoid building a whole JSON structure in the URL of GET, as in:
http://extensionizr.com/!#{"modules":["hidden-mode","with-bg",
"with-persistent-bg","with-custom-options","no-override","inject-css",
"inject-js","omnibox","jquerymin","angular"],"boolean_perms":
["bookmarks","chrome://favicon/","clipboardRead","clipboardWrite",
"contentSettings","contextMenus","cookies","fileBrowserHandler",
"tts","ttsEngine","history","idle","management","notifications",
"tabs","geolocation"],"match_ptrns":[]}
Rather, let one setup choices, and save it to a hash, which can be bookmark-able and retrieved later.Also, when sending in post body, converting it to Base64 before sending on the wire, e.g.:
btoa(JSON.stringify($Object))Re: Extensionizr: Chrome extension boilerplate generator
#27Looks great! One comment though, I would try to avoid building a whole JSON structure in the URL of GET, as in: http://extensionizr.com/!#{"modules":["hidden-mode","with-bg", "with-persistent-bg","with-custom-options","no-override","inject-css", "inject-js","omnibox","jquerymin","angular"],"boolean_perms": ["bookmarks","chrome://favicon/","clipboardRead","clipboardWrite", "contentSettings","contextMenus","cookies","f…
Re: Extensionizr: Chrome extension boilerplate generator
#28I used this to start up an extension for use internally with my company for quickly adding discussions to a Basecamp project. Definitely takes care of a lot of the basics for you. Back when I used it, some pieces weren't maintained anymore, so look out for that. (Seems like the settings interface was from a non-active project?) Great way to get started on an extension. Would love to see this go cross-browser.