├── .eslintrc ├── .gitignore ├── .web-extension-id ├── CODE_OF_CONDUCT.md ├── README.md ├── background.js ├── content-home.js ├── content.js ├── gecko_profiler.update.rdf ├── gecko_profiler.xpi ├── gecko_profiler_legacy.xpi ├── gecko_profiler_transition.xpi ├── icons ├── capture-profile-icon.svg ├── icon.png ├── icon@2x.png ├── toolbar_off.png ├── toolbar_off_light.png └── toolbar_on.png ├── manifest.json ├── options.html ├── options.js ├── package.json ├── popup.css ├── popup.html ├── popup.js ├── resources ├── panel-container.html └── panel-ideas.html ├── transition ├── bootstrap.js └── install.rdf ├── updates.json └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | web-ext-artifacts/ 2 | node_modules 3 | -------------------------------------------------------------------------------- /.web-extension-id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/.web-extension-id -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/background.js -------------------------------------------------------------------------------- /content-home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/content-home.js -------------------------------------------------------------------------------- /content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/content.js -------------------------------------------------------------------------------- /gecko_profiler.update.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/gecko_profiler.update.rdf -------------------------------------------------------------------------------- /gecko_profiler.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/gecko_profiler.xpi -------------------------------------------------------------------------------- /gecko_profiler_legacy.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/gecko_profiler_legacy.xpi -------------------------------------------------------------------------------- /gecko_profiler_transition.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/gecko_profiler_transition.xpi -------------------------------------------------------------------------------- /icons/capture-profile-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/icons/capture-profile-icon.svg -------------------------------------------------------------------------------- /icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/icons/icon.png -------------------------------------------------------------------------------- /icons/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/icons/icon@2x.png -------------------------------------------------------------------------------- /icons/toolbar_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/icons/toolbar_off.png -------------------------------------------------------------------------------- /icons/toolbar_off_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/icons/toolbar_off_light.png -------------------------------------------------------------------------------- /icons/toolbar_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/icons/toolbar_on.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/manifest.json -------------------------------------------------------------------------------- /options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/options.html -------------------------------------------------------------------------------- /options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/options.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/package.json -------------------------------------------------------------------------------- /popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/popup.css -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/popup.html -------------------------------------------------------------------------------- /popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/popup.js -------------------------------------------------------------------------------- /resources/panel-container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/resources/panel-container.html -------------------------------------------------------------------------------- /resources/panel-ideas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/resources/panel-ideas.html -------------------------------------------------------------------------------- /transition/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/transition/bootstrap.js -------------------------------------------------------------------------------- /transition/install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/transition/install.rdf -------------------------------------------------------------------------------- /updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/updates.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firefox-devtools/Gecko-Profiler-Addon/HEAD/yarn.lock --------------------------------------------------------------------------------