├── .coveralls.yml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .jshintrc ├── .npmignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── doc └── firefox_profile.md ├── examples ├── example-wd.js └── finder.js ├── firefox-profile.sublime-project ├── lib ├── cli.js ├── firefox_profile.d.ts ├── firefox_profile.js ├── profile_finder.d.ts └── profile_finder.js ├── package.json ├── secret.config.sample.sh └── test ├── before.js ├── cli.js ├── empty-profile ├── .parentlock ├── empty.file ├── lock └── parent.lock ├── extensions ├── firebug-1.12.4-fx.xpi ├── firebug-2.0.1-fx.xpi ├── firebug-2.0.6.xpi ├── jetpack-extension.xpi ├── no-namespace.xpi ├── packed-extension.xpi ├── png-extension.xpi ├── test.jetpack-template.xpi │ ├── index.js │ └── package.json ├── test.no-namespace-template.xpi │ ├── breakpointConditionEditor.png │ └── install.rdf ├── test.template.xpi │ ├── breakpointConditionEditor.png │ └── install.rdf ├── webextension.browser_specific_settings.xpi ├── webextension.with_package-json.xpi └── webextension.xpi ├── firefox_profile.js ├── profile_finder.js ├── profiles.ini ├── require.js ├── spec └── extension.spec.js └── test_profiles.js /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/README.md -------------------------------------------------------------------------------- /doc/firefox_profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/doc/firefox_profile.md -------------------------------------------------------------------------------- /examples/example-wd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/examples/example-wd.js -------------------------------------------------------------------------------- /examples/finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/examples/finder.js -------------------------------------------------------------------------------- /firefox-profile.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/firefox-profile.sublime-project -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/lib/cli.js -------------------------------------------------------------------------------- /lib/firefox_profile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/lib/firefox_profile.d.ts -------------------------------------------------------------------------------- /lib/firefox_profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/lib/firefox_profile.js -------------------------------------------------------------------------------- /lib/profile_finder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/lib/profile_finder.d.ts -------------------------------------------------------------------------------- /lib/profile_finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/lib/profile_finder.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/package.json -------------------------------------------------------------------------------- /secret.config.sample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/secret.config.sample.sh -------------------------------------------------------------------------------- /test/before.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/before.js -------------------------------------------------------------------------------- /test/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/cli.js -------------------------------------------------------------------------------- /test/empty-profile/.parentlock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/empty-profile/empty.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/empty-profile/empty.file -------------------------------------------------------------------------------- /test/empty-profile/lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/empty-profile/parent.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/extensions/firebug-1.12.4-fx.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/extensions/firebug-1.12.4-fx.xpi -------------------------------------------------------------------------------- /test/extensions/firebug-2.0.1-fx.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/extensions/firebug-2.0.1-fx.xpi -------------------------------------------------------------------------------- /test/extensions/firebug-2.0.6.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/extensions/firebug-2.0.6.xpi -------------------------------------------------------------------------------- /test/extensions/jetpack-extension.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/extensions/jetpack-extension.xpi -------------------------------------------------------------------------------- /test/extensions/no-namespace.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/extensions/no-namespace.xpi -------------------------------------------------------------------------------- /test/extensions/packed-extension.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/extensions/packed-extension.xpi -------------------------------------------------------------------------------- /test/extensions/png-extension.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/extensions/png-extension.xpi -------------------------------------------------------------------------------- /test/extensions/test.jetpack-template.xpi/index.js: -------------------------------------------------------------------------------- 1 | console.log('test.jetpack-template.xpi'); 2 | -------------------------------------------------------------------------------- /test/extensions/test.jetpack-template.xpi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/extensions/test.jetpack-template.xpi/package.json -------------------------------------------------------------------------------- /test/extensions/test.no-namespace-template.xpi/breakpointConditionEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/extensions/test.no-namespace-template.xpi/breakpointConditionEditor.png -------------------------------------------------------------------------------- /test/extensions/test.no-namespace-template.xpi/install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/extensions/test.no-namespace-template.xpi/install.rdf -------------------------------------------------------------------------------- /test/extensions/test.template.xpi/breakpointConditionEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/extensions/test.template.xpi/breakpointConditionEditor.png -------------------------------------------------------------------------------- /test/extensions/test.template.xpi/install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/extensions/test.template.xpi/install.rdf -------------------------------------------------------------------------------- /test/extensions/webextension.browser_specific_settings.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/extensions/webextension.browser_specific_settings.xpi -------------------------------------------------------------------------------- /test/extensions/webextension.with_package-json.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/extensions/webextension.with_package-json.xpi -------------------------------------------------------------------------------- /test/extensions/webextension.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/extensions/webextension.xpi -------------------------------------------------------------------------------- /test/firefox_profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/firefox_profile.js -------------------------------------------------------------------------------- /test/profile_finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/profile_finder.js -------------------------------------------------------------------------------- /test/profiles.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/profiles.ini -------------------------------------------------------------------------------- /test/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/require.js -------------------------------------------------------------------------------- /test/spec/extension.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/spec/extension.spec.js -------------------------------------------------------------------------------- /test/test_profiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadtazi/firefox-profile-js/HEAD/test/test_profiles.js --------------------------------------------------------------------------------