├── .gitignore ├── LICENSE ├── LegacyHelper.projitems ├── LegacyHelper.shproj ├── LegacyHelperSample ├── .gitignore ├── LegacyHelperSample.projitems ├── LegacyHelperSample.shproj ├── LegacyHelperSample.sln ├── bootstrap.js ├── chrome │ └── icons │ │ └── default │ │ └── main-window.ico ├── framescript.js ├── loader.js ├── manifest.json ├── options.html ├── options.js └── stylesheet.css ├── PackageXpi.bat ├── README.md ├── XpiZipList.txt ├── legacyHelper.js ├── legacyHelper.json ├── manifest.json ├── updates.json └── workaround1406055.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/LICENSE -------------------------------------------------------------------------------- /LegacyHelper.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/LegacyHelper.projitems -------------------------------------------------------------------------------- /LegacyHelper.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/LegacyHelper.shproj -------------------------------------------------------------------------------- /LegacyHelperSample/.gitignore: -------------------------------------------------------------------------------- 1 | /LegacyHelperSample@byalexv.co.uk 2 | -------------------------------------------------------------------------------- /LegacyHelperSample/LegacyHelperSample.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/LegacyHelperSample/LegacyHelperSample.projitems -------------------------------------------------------------------------------- /LegacyHelperSample/LegacyHelperSample.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/LegacyHelperSample/LegacyHelperSample.shproj -------------------------------------------------------------------------------- /LegacyHelperSample/LegacyHelperSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/LegacyHelperSample/LegacyHelperSample.sln -------------------------------------------------------------------------------- /LegacyHelperSample/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/LegacyHelperSample/bootstrap.js -------------------------------------------------------------------------------- /LegacyHelperSample/chrome/icons/default/main-window.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/LegacyHelperSample/chrome/icons/default/main-window.ico -------------------------------------------------------------------------------- /LegacyHelperSample/framescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/LegacyHelperSample/framescript.js -------------------------------------------------------------------------------- /LegacyHelperSample/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/LegacyHelperSample/loader.js -------------------------------------------------------------------------------- /LegacyHelperSample/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/LegacyHelperSample/manifest.json -------------------------------------------------------------------------------- /LegacyHelperSample/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/LegacyHelperSample/options.html -------------------------------------------------------------------------------- /LegacyHelperSample/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/LegacyHelperSample/options.js -------------------------------------------------------------------------------- /LegacyHelperSample/stylesheet.css: -------------------------------------------------------------------------------- 1 | hbox { 2 | background-color: red; 3 | } -------------------------------------------------------------------------------- /PackageXpi.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/PackageXpi.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/README.md -------------------------------------------------------------------------------- /XpiZipList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/XpiZipList.txt -------------------------------------------------------------------------------- /legacyHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/legacyHelper.js -------------------------------------------------------------------------------- /legacyHelper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/legacyHelper.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/manifest.json -------------------------------------------------------------------------------- /updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/updates.json -------------------------------------------------------------------------------- /workaround1406055.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexVallat/LegacyHelper/HEAD/workaround1406055.js --------------------------------------------------------------------------------