├── project └── plugins.sbt ├── .gitignore ├── src └── main │ └── g8 │ ├── js │ └── app.js │ ├── css │ └── app.css │ ├── default.properties │ ├── popup.html │ ├── manifest.json │ └── background.html └── README.md /project/plugins.sbt: -------------------------------------------------------------------------------- 1 | addSbtPlugin("net.databinder" % "giter8-plugin" % "0.3.2") 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | lib_managed 3 | src_managed 4 | project/boot 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /src/main/g8/js/app.js: -------------------------------------------------------------------------------- 1 | /* behavior */ 2 | (function(jq){ 3 | // do it 4 | })(jQuery); -------------------------------------------------------------------------------- /src/main/g8/css/app.css: -------------------------------------------------------------------------------- 1 | /* styles */ 2 | * { margin:0; padding:0; } 3 | body { font-family:helvetica; font-size:16px; } -------------------------------------------------------------------------------- /src/main/g8/default.properties: -------------------------------------------------------------------------------- 1 | name=My Google Chrome Plugin 2 | version=0.1.0 3 | description=My Google Chrome Plugin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Google Chrome Plugin g8 template 2 | 3 | Simple [g8](github.com/n8han/giter8) template for google [chrome](http://www.google.com/chrome) [extensions](http://code.google.com/chrome/extensions/overview.html) 4 | for more info see the [docs](http://code.google.com/chrome/extensions/devguide.html) -------------------------------------------------------------------------------- /src/main/g8/popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

Hello Chrome

9 | 10 | 11 | -------------------------------------------------------------------------------- /src/main/g8/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "$name$", 3 | "version": "$version$", 4 | "description": "$description$", 5 | "background_page": "background.html", 6 | "browser_action": { 7 | "popup": "popup.html" 8 | }, 9 | "permissions": [ 10 | // "bookmarks", 11 | // "chrome://favicon/", 12 | // "contextMenus", 13 | // "cookies", 14 | // "experimental", 15 | // "geolocation", 16 | // "history", 17 | // "idle", 18 | "notifications", 19 | "tabs", 20 | // "unlimitedStorage", 21 | "https://ajax.googleapis.com/" 22 | ] 23 | } -------------------------------------------------------------------------------- /src/main/g8/background.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 33 | 34 | 35 | 36 | 37 | --------------------------------------------------------------------------------