├── .gitignore ├── README.md ├── firefox-plugin ├── HISTORY.md ├── Makefile ├── src │ ├── chrome.manifest │ ├── content │ │ ├── csslint │ │ │ ├── firebugOverlay.xul │ │ │ └── firebugPanel.js │ │ └── skin │ │ │ └── classic │ │ │ └── csslint.css │ └── install.rdf ├── test │ ├── report.html │ └── test.html └── type-o-matic-stubbornella.xpi ├── img ├── install-firefox-extension.jpg ├── type-o-matic-amazon.jpg ├── type-o-matic-screenshot.png └── type-o-matic.jpg └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stubbornella/type-o-matic/HEAD/README.md -------------------------------------------------------------------------------- /firefox-plugin/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stubbornella/type-o-matic/HEAD/firefox-plugin/HISTORY.md -------------------------------------------------------------------------------- /firefox-plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stubbornella/type-o-matic/HEAD/firefox-plugin/Makefile -------------------------------------------------------------------------------- /firefox-plugin/src/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stubbornella/type-o-matic/HEAD/firefox-plugin/src/chrome.manifest -------------------------------------------------------------------------------- /firefox-plugin/src/content/csslint/firebugOverlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stubbornella/type-o-matic/HEAD/firefox-plugin/src/content/csslint/firebugOverlay.xul -------------------------------------------------------------------------------- /firefox-plugin/src/content/csslint/firebugPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stubbornella/type-o-matic/HEAD/firefox-plugin/src/content/csslint/firebugPanel.js -------------------------------------------------------------------------------- /firefox-plugin/src/content/skin/classic/csslint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stubbornella/type-o-matic/HEAD/firefox-plugin/src/content/skin/classic/csslint.css -------------------------------------------------------------------------------- /firefox-plugin/src/install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stubbornella/type-o-matic/HEAD/firefox-plugin/src/install.rdf -------------------------------------------------------------------------------- /firefox-plugin/test/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stubbornella/type-o-matic/HEAD/firefox-plugin/test/report.html -------------------------------------------------------------------------------- /firefox-plugin/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stubbornella/type-o-matic/HEAD/firefox-plugin/test/test.html -------------------------------------------------------------------------------- /firefox-plugin/type-o-matic-stubbornella.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stubbornella/type-o-matic/HEAD/firefox-plugin/type-o-matic-stubbornella.xpi -------------------------------------------------------------------------------- /img/install-firefox-extension.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stubbornella/type-o-matic/HEAD/img/install-firefox-extension.jpg -------------------------------------------------------------------------------- /img/type-o-matic-amazon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stubbornella/type-o-matic/HEAD/img/type-o-matic-amazon.jpg -------------------------------------------------------------------------------- /img/type-o-matic-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stubbornella/type-o-matic/HEAD/img/type-o-matic-screenshot.png -------------------------------------------------------------------------------- /img/type-o-matic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stubbornella/type-o-matic/HEAD/img/type-o-matic.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stubbornella/type-o-matic/HEAD/index.html --------------------------------------------------------------------------------