├── .gitignore ├── Makefile ├── README.md ├── bootstrap.js ├── chrome.manifest ├── chrome ├── content │ └── indicator.jsm ├── locale │ └── en-US │ │ └── overlay.dtd └── skin │ ├── icon-http2-active.png │ ├── icon-spdy-active.png │ ├── icon-spdy-subactive.png │ └── overlay.css ├── exclude.lst ├── icon.png ├── install.rdf └── vendor ├── icon-http2-active.svg ├── icon-spdy-active.svg ├── icon-spdy-subactive.svg └── icon.svg /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.xpi 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengsun/moz-spdy-indicator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengsun/moz-spdy-indicator/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengsun/moz-spdy-indicator/HEAD/bootstrap.js -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengsun/moz-spdy-indicator/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/indicator.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengsun/moz-spdy-indicator/HEAD/chrome/content/indicator.jsm -------------------------------------------------------------------------------- /chrome/locale/en-US/overlay.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengsun/moz-spdy-indicator/HEAD/chrome/locale/en-US/overlay.dtd -------------------------------------------------------------------------------- /chrome/skin/icon-http2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengsun/moz-spdy-indicator/HEAD/chrome/skin/icon-http2-active.png -------------------------------------------------------------------------------- /chrome/skin/icon-spdy-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengsun/moz-spdy-indicator/HEAD/chrome/skin/icon-spdy-active.png -------------------------------------------------------------------------------- /chrome/skin/icon-spdy-subactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengsun/moz-spdy-indicator/HEAD/chrome/skin/icon-spdy-subactive.png -------------------------------------------------------------------------------- /chrome/skin/overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengsun/moz-spdy-indicator/HEAD/chrome/skin/overlay.css -------------------------------------------------------------------------------- /exclude.lst: -------------------------------------------------------------------------------- 1 | exclude.lst 2 | Makefile 3 | README.md 4 | .DS_Store 5 | *.xpi 6 | vendor/* 7 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengsun/moz-spdy-indicator/HEAD/icon.png -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengsun/moz-spdy-indicator/HEAD/install.rdf -------------------------------------------------------------------------------- /vendor/icon-http2-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengsun/moz-spdy-indicator/HEAD/vendor/icon-http2-active.svg -------------------------------------------------------------------------------- /vendor/icon-spdy-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengsun/moz-spdy-indicator/HEAD/vendor/icon-spdy-active.svg -------------------------------------------------------------------------------- /vendor/icon-spdy-subactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengsun/moz-spdy-indicator/HEAD/vendor/icon-spdy-subactive.svg -------------------------------------------------------------------------------- /vendor/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengsun/moz-spdy-indicator/HEAD/vendor/icon.svg --------------------------------------------------------------------------------