├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── README.md ├── app ├── _locales │ └── en │ │ └── messages.json ├── images │ ├── icon-128.png │ ├── icon-16.png │ └── icon-48.png ├── manifest.json ├── pages │ ├── notice.html │ └── permission.html ├── scripts │ ├── background.js │ ├── chromereload.js │ ├── contentscript.js │ └── notice.js └── styles │ ├── background.css │ └── main.css ├── bower.json ├── package.json ├── promo ├── large-tile.png ├── marquee.png ├── screenshot.png └── small-tile.png └── test ├── .bowerrc ├── bower.json ├── index.html └── spec └── test.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/README.md -------------------------------------------------------------------------------- /app/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/app/_locales/en/messages.json -------------------------------------------------------------------------------- /app/images/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/app/images/icon-128.png -------------------------------------------------------------------------------- /app/images/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/app/images/icon-16.png -------------------------------------------------------------------------------- /app/images/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/app/images/icon-48.png -------------------------------------------------------------------------------- /app/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/app/manifest.json -------------------------------------------------------------------------------- /app/pages/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/app/pages/notice.html -------------------------------------------------------------------------------- /app/pages/permission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/app/pages/permission.html -------------------------------------------------------------------------------- /app/scripts/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/app/scripts/background.js -------------------------------------------------------------------------------- /app/scripts/chromereload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/app/scripts/chromereload.js -------------------------------------------------------------------------------- /app/scripts/contentscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/app/scripts/contentscript.js -------------------------------------------------------------------------------- /app/scripts/notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/app/scripts/notice.js -------------------------------------------------------------------------------- /app/styles/background.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/app/styles/background.css -------------------------------------------------------------------------------- /app/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/app/styles/main.css -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/package.json -------------------------------------------------------------------------------- /promo/large-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/promo/large-tile.png -------------------------------------------------------------------------------- /promo/marquee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/promo/marquee.png -------------------------------------------------------------------------------- /promo/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/promo/screenshot.png -------------------------------------------------------------------------------- /promo/small-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/promo/small-tile.png -------------------------------------------------------------------------------- /test/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /test/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/test/bower.json -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/test/index.html -------------------------------------------------------------------------------- /test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fouad/chrome-tablight/HEAD/test/spec/test.js --------------------------------------------------------------------------------