* Add extensions that should be installed when starting Firefox. * * @param {...string} paths The paths to the extension XPI files to install. * @return {!Options} A self reference.
(...paths)
| 319 | * @return {!Options} A self reference. |
| 320 | */ |
| 321 | addExtensions(...paths) { |
| 322 | this.profile_().addExtensions(paths) |
| 323 | return this |
| 324 | } |
| 325 | |
| 326 | /** |
| 327 | * @param {string} key the preference key. |
nothing calls this directly
no test coverage detected