├── .gitignore ├── AUTHORS ├── COPYING ├── README.markdown ├── chrome.manifest ├── config_build.sh ├── defaults └── preferences │ └── webpg-firefox.js ├── extension ├── XULContent │ ├── firefoxOverlay.xul │ ├── options.xul │ └── thunderbird │ │ ├── composeOverlay.js │ │ ├── composeOverlay.xul │ │ ├── messageOverlay.xul │ │ ├── thunderbirdOverlay.xul │ │ └── thunderbirdUtils.js ├── about.html ├── about.js ├── background.js ├── browser_action_menu.html ├── browser_action_menu.js ├── buttonbar.js ├── constants.js ├── dialog.html ├── dialog.js ├── error.html ├── error.js ├── inline.js ├── key_manager.html ├── key_manager.js ├── notice.html ├── notice.js ├── options.html ├── options.js ├── preferences.js ├── resources │ ├── angularjs │ │ ├── angular-ui.min.js │ │ ├── angular.min.js │ │ └── angular.min.js.map │ └── jquery │ │ ├── css │ │ ├── dot-luv │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_diagonals-thick_15_0b3e6f_40x40.png │ │ │ │ ├── ui-bg_dots-medium_30_0b58a2_4x4.png │ │ │ │ ├── ui-bg_dots-small_20_333333_2x2.png │ │ │ │ ├── ui-bg_dots-small_30_a32d00_2x2.png │ │ │ │ ├── ui-bg_dots-small_40_00498f_2x2.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_40_292929_40x100.png │ │ │ │ ├── ui-bg_gloss-wave_20_111111_500x100.png │ │ │ │ ├── ui-icons_00498f_256x240.png │ │ │ │ ├── ui-icons_98d2fb_256x240.png │ │ │ │ ├── ui-icons_9ccdfc_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── jquery-ui-1.10.3.custom.css │ │ ├── jquery.multiselect.css │ │ └── jquery.multiselect.filter.css │ │ └── js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery-ui-1.10.3.custom.min.js │ │ ├── jquery.multiselect.filter.js │ │ ├── jquery.multiselect.js │ │ └── jquery.passwordStrength.js ├── skin │ ├── gmail_overlay.css │ ├── images │ │ ├── badges │ │ │ ├── 16x16 │ │ │ │ ├── about.png │ │ │ │ ├── secure_editor.png │ │ │ │ ├── stock_decrypted-signature-bad.png │ │ │ │ ├── stock_decrypted-signature-ok.png │ │ │ │ ├── stock_decrypted-signature.png │ │ │ │ ├── stock_decrypted.png │ │ │ │ ├── stock_encrypted.png │ │ │ │ ├── stock_encrypted_signed.png │ │ │ │ ├── stock_keypair.png │ │ │ │ ├── stock_signature-attachment.png │ │ │ │ ├── stock_signature-bad.png │ │ │ │ ├── stock_signature-ok.png │ │ │ │ ├── stock_signature.png │ │ │ │ └── webpg.png │ │ │ ├── 20x20 │ │ │ │ ├── about.png │ │ │ │ ├── secure_editor.png │ │ │ │ ├── stock_decrypted-signature-bad.png │ │ │ │ ├── stock_decrypted-signature-ok.png │ │ │ │ ├── stock_decrypted-signature.png │ │ │ │ ├── stock_decrypted.png │ │ │ │ ├── stock_encrypted.png │ │ │ │ ├── stock_encrypted_signed.png │ │ │ │ ├── stock_keypair.png │ │ │ │ ├── stock_signature-attachment.png │ │ │ │ ├── stock_signature-bad.png │ │ │ │ ├── stock_signature-ok.png │ │ │ │ ├── stock_signature.png │ │ │ │ └── webpg.png │ │ │ ├── 24x24 │ │ │ │ ├── about.png │ │ │ │ ├── secure_editor.png │ │ │ │ ├── stock_decrypted-signature-bad.png │ │ │ │ ├── stock_decrypted-signature-ok.png │ │ │ │ ├── stock_decrypted-signature.png │ │ │ │ ├── stock_decrypted.png │ │ │ │ ├── stock_encrypted.png │ │ │ │ ├── stock_encrypted_signed.png │ │ │ │ ├── stock_keypair.png │ │ │ │ ├── stock_signature-attachment.png │ │ │ │ ├── stock_signature-bad.png │ │ │ │ ├── stock_signature-ok.png │ │ │ │ ├── stock_signature.png │ │ │ │ └── webpg.png │ │ │ ├── 32x32 │ │ │ │ ├── about.png │ │ │ │ ├── secure_editor.png │ │ │ │ ├── stock_decrypted-signature-bad.png │ │ │ │ ├── stock_decrypted-signature-ok.png │ │ │ │ ├── stock_decrypted-signature.png │ │ │ │ ├── stock_decrypted.png │ │ │ │ ├── stock_encrypted.png │ │ │ │ ├── stock_encrypted_signed.png │ │ │ │ ├── stock_keypair.png │ │ │ │ ├── stock_signature-attachment.png │ │ │ │ ├── stock_signature-bad.png │ │ │ │ ├── stock_signature-ok.png │ │ │ │ ├── stock_signature.png │ │ │ │ └── webpg.png │ │ │ └── 48x48 │ │ │ │ ├── about.png │ │ │ │ ├── secure_editor.png │ │ │ │ ├── stock_decrypted-signature-bad.png │ │ │ │ ├── stock_decrypted-signature-ok.png │ │ │ │ ├── stock_decrypted-signature.png │ │ │ │ ├── stock_decrypted.png │ │ │ │ ├── stock_encrypted.png │ │ │ │ ├── stock_encrypted_signed.png │ │ │ │ ├── stock_keypair.png │ │ │ │ ├── stock_signature-attachment.png │ │ │ │ ├── stock_signature-bad.png │ │ │ │ ├── stock_signature-ok.png │ │ │ │ ├── stock_signature.png │ │ │ │ └── webpg.png │ │ ├── cancel-small.png │ │ ├── cancel.png │ │ ├── check-small.png │ │ ├── check.png │ │ ├── examples │ │ │ ├── inline-formatting-icon.png │ │ │ ├── inline-formatting-window.png │ │ │ └── toolbar-sample.png │ │ ├── expand-collapse.gif │ │ ├── help_arrow.png │ │ ├── menumask.png │ │ ├── webpg-128.png │ │ ├── webpg-64.png │ │ └── webpg-96.png │ ├── keymanager.css │ └── overlay.css ├── userdocs.html ├── userdocs.js ├── utils.js ├── webmail │ └── gmail │ │ └── gmail.js ├── webpg_overlay.js ├── webpg_results.html ├── webpg_results.js └── xoauth2.js ├── extension_tests └── various_tests.html ├── generate_docs.sh ├── install.rdf ├── locale ├── ar │ ├── webpg.dtd │ └── webpg.properties ├── bg │ ├── webpg.dtd │ └── webpg.properties ├── ca │ ├── webpg.dtd │ └── webpg.properties ├── cs │ ├── webpg.dtd │ └── webpg.properties ├── da │ ├── webpg.dtd │ └── webpg.properties ├── de │ ├── webpg.dtd │ └── webpg.properties ├── el │ ├── webpg.dtd │ └── webpg.properties ├── en │ ├── webpg.dtd │ └── webpg.properties ├── en_GB │ ├── webpg.dtd │ └── webpg.properties ├── en_US │ ├── webpg.dtd │ └── webpg.properties ├── es │ ├── webpg.dtd │ └── webpg.properties ├── es_419 │ ├── webpg.dtd │ └── webpg.properties ├── et │ ├── webpg.dtd │ └── webpg.properties ├── fi │ ├── webpg.dtd │ └── webpg.properties ├── fil │ ├── webpg.dtd │ └── webpg.properties ├── fr │ ├── webpg.dtd │ └── webpg.properties ├── he │ ├── webpg.dtd │ └── webpg.properties ├── hi │ ├── webpg.dtd │ └── webpg.properties ├── hr │ ├── webpg.dtd │ └── webpg.properties ├── hu │ ├── webpg.dtd │ └── webpg.properties ├── id │ ├── webpg.dtd │ └── webpg.properties ├── it │ ├── webpg.dtd │ └── webpg.properties ├── ja │ ├── webpg.dtd │ └── webpg.properties ├── ko │ ├── webpg.dtd │ └── webpg.properties ├── lt │ ├── webpg.dtd │ └── webpg.properties ├── lv │ ├── webpg.dtd │ └── webpg.properties ├── nl │ ├── webpg.dtd │ └── webpg.properties ├── np │ ├── webpg.dtd │ └── webpg.properties ├── pl │ ├── webpg.dtd │ └── webpg.properties ├── pt_BR │ ├── webpg.dtd │ └── webpg.properties ├── pt_PT │ ├── webpg.dtd │ └── webpg.properties ├── ro │ ├── webpg.dtd │ └── webpg.properties ├── ru │ ├── webpg.dtd │ └── webpg.properties ├── sk │ ├── webpg.dtd │ └── webpg.properties ├── sl │ ├── webpg.dtd │ └── webpg.properties ├── sr │ ├── webpg.dtd │ └── webpg.properties ├── sv │ ├── webpg.dtd │ └── webpg.properties ├── th │ ├── webpg.dtd │ └── webpg.properties ├── tr │ ├── webpg.dtd │ └── webpg.properties ├── uk │ ├── webpg.dtd │ └── webpg.properties ├── vi │ ├── webpg.dtd │ └── webpg.properties ├── zh_CN │ ├── webpg.dtd │ └── webpg.properties └── zh_TW │ ├── webpg.dtd │ └── webpg.properties ├── plugins ├── libassuan-0.dll ├── libgpg-error-0.dll ├── libgpgme-11.dll ├── npwebpg-ext-v0.7.0-Darwin_x86_64-gcc.plugin │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── npwebpg-ext-v0.7.0-Darwin_x86_64-gcc │ │ └── Resources │ │ └── English.lproj │ │ ├── InfoPlist.strings │ │ └── Localized.rsrc ├── npwebpg-ext-v0.7.0-Linux_x86-gcc.so ├── npwebpg-ext-v0.7.0-Linux_x86_64-gcc.so └── npwebpg-ext-v0.7.0-WINNT_x86-msvc.dll ├── po ├── POTFILES.in ├── ar.po ├── bg.po ├── ca.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── en.po ├── en_GB.po ├── en_US.po ├── es.po ├── es_419.po ├── et.po ├── fi.po ├── fil.po ├── fr.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── id.po ├── it.po ├── ja.po ├── ko.po ├── lt.po ├── lv.po ├── nl.po ├── np.po ├── pl.po ├── pt_BR.po ├── pt_PT.po ├── ro.po ├── ru.po ├── sk.po ├── sl.po ├── sr.po ├── sv.po ├── th.po ├── tr.po ├── uk.po ├── vi.po ├── webpg.pot ├── zh_CN.po └── zh_TW.po ├── update_translations.sh └── webpg-babel.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Kyle L. Huff 2 | http://curetheitch.com/ 3 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/COPYING -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/README.markdown -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/chrome.manifest -------------------------------------------------------------------------------- /config_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/config_build.sh -------------------------------------------------------------------------------- /defaults/preferences/webpg-firefox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/defaults/preferences/webpg-firefox.js -------------------------------------------------------------------------------- /extension/XULContent/firefoxOverlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/XULContent/firefoxOverlay.xul -------------------------------------------------------------------------------- /extension/XULContent/options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/XULContent/options.xul -------------------------------------------------------------------------------- /extension/XULContent/thunderbird/composeOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/XULContent/thunderbird/composeOverlay.js -------------------------------------------------------------------------------- /extension/XULContent/thunderbird/composeOverlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/XULContent/thunderbird/composeOverlay.xul -------------------------------------------------------------------------------- /extension/XULContent/thunderbird/messageOverlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/XULContent/thunderbird/messageOverlay.xul -------------------------------------------------------------------------------- /extension/XULContent/thunderbird/thunderbirdOverlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/XULContent/thunderbird/thunderbirdOverlay.xul -------------------------------------------------------------------------------- /extension/XULContent/thunderbird/thunderbirdUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/XULContent/thunderbird/thunderbirdUtils.js -------------------------------------------------------------------------------- /extension/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/about.html -------------------------------------------------------------------------------- /extension/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/about.js -------------------------------------------------------------------------------- /extension/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/background.js -------------------------------------------------------------------------------- /extension/browser_action_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/browser_action_menu.html -------------------------------------------------------------------------------- /extension/browser_action_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/browser_action_menu.js -------------------------------------------------------------------------------- /extension/buttonbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/buttonbar.js -------------------------------------------------------------------------------- /extension/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/constants.js -------------------------------------------------------------------------------- /extension/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/dialog.html -------------------------------------------------------------------------------- /extension/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/dialog.js -------------------------------------------------------------------------------- /extension/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/error.html -------------------------------------------------------------------------------- /extension/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/error.js -------------------------------------------------------------------------------- /extension/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/inline.js -------------------------------------------------------------------------------- /extension/key_manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/key_manager.html -------------------------------------------------------------------------------- /extension/key_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/key_manager.js -------------------------------------------------------------------------------- /extension/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/notice.html -------------------------------------------------------------------------------- /extension/notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/notice.js -------------------------------------------------------------------------------- /extension/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/options.html -------------------------------------------------------------------------------- /extension/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/options.js -------------------------------------------------------------------------------- /extension/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/preferences.js -------------------------------------------------------------------------------- /extension/resources/angularjs/angular-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/angularjs/angular-ui.min.js -------------------------------------------------------------------------------- /extension/resources/angularjs/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/angularjs/angular.min.js -------------------------------------------------------------------------------- /extension/resources/angularjs/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/angularjs/angular.min.js.map -------------------------------------------------------------------------------- /extension/resources/jquery/css/dot-luv/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/css/dot-luv/images/animated-overlay.gif -------------------------------------------------------------------------------- /extension/resources/jquery/css/dot-luv/images/ui-bg_diagonals-thick_15_0b3e6f_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/css/dot-luv/images/ui-bg_diagonals-thick_15_0b3e6f_40x40.png -------------------------------------------------------------------------------- /extension/resources/jquery/css/dot-luv/images/ui-bg_dots-medium_30_0b58a2_4x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/css/dot-luv/images/ui-bg_dots-medium_30_0b58a2_4x4.png -------------------------------------------------------------------------------- /extension/resources/jquery/css/dot-luv/images/ui-bg_dots-small_20_333333_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/css/dot-luv/images/ui-bg_dots-small_20_333333_2x2.png -------------------------------------------------------------------------------- /extension/resources/jquery/css/dot-luv/images/ui-bg_dots-small_30_a32d00_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/css/dot-luv/images/ui-bg_dots-small_30_a32d00_2x2.png -------------------------------------------------------------------------------- /extension/resources/jquery/css/dot-luv/images/ui-bg_dots-small_40_00498f_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/css/dot-luv/images/ui-bg_dots-small_40_00498f_2x2.png -------------------------------------------------------------------------------- /extension/resources/jquery/css/dot-luv/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/css/dot-luv/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /extension/resources/jquery/css/dot-luv/images/ui-bg_flat_40_292929_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/css/dot-luv/images/ui-bg_flat_40_292929_40x100.png -------------------------------------------------------------------------------- /extension/resources/jquery/css/dot-luv/images/ui-bg_gloss-wave_20_111111_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/css/dot-luv/images/ui-bg_gloss-wave_20_111111_500x100.png -------------------------------------------------------------------------------- /extension/resources/jquery/css/dot-luv/images/ui-icons_00498f_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/css/dot-luv/images/ui-icons_00498f_256x240.png -------------------------------------------------------------------------------- /extension/resources/jquery/css/dot-luv/images/ui-icons_98d2fb_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/css/dot-luv/images/ui-icons_98d2fb_256x240.png -------------------------------------------------------------------------------- /extension/resources/jquery/css/dot-luv/images/ui-icons_9ccdfc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/css/dot-luv/images/ui-icons_9ccdfc_256x240.png -------------------------------------------------------------------------------- /extension/resources/jquery/css/dot-luv/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/css/dot-luv/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /extension/resources/jquery/css/dot-luv/jquery-ui-1.10.3.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/css/dot-luv/jquery-ui-1.10.3.custom.css -------------------------------------------------------------------------------- /extension/resources/jquery/css/jquery.multiselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/css/jquery.multiselect.css -------------------------------------------------------------------------------- /extension/resources/jquery/css/jquery.multiselect.filter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/css/jquery.multiselect.filter.css -------------------------------------------------------------------------------- /extension/resources/jquery/js/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/js/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /extension/resources/jquery/js/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/js/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /extension/resources/jquery/js/jquery-ui-1.10.3.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/js/jquery-ui-1.10.3.custom.min.js -------------------------------------------------------------------------------- /extension/resources/jquery/js/jquery.multiselect.filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/js/jquery.multiselect.filter.js -------------------------------------------------------------------------------- /extension/resources/jquery/js/jquery.multiselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/js/jquery.multiselect.js -------------------------------------------------------------------------------- /extension/resources/jquery/js/jquery.passwordStrength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/resources/jquery/js/jquery.passwordStrength.js -------------------------------------------------------------------------------- /extension/skin/gmail_overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/gmail_overlay.css -------------------------------------------------------------------------------- /extension/skin/images/badges/16x16/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/16x16/about.png -------------------------------------------------------------------------------- /extension/skin/images/badges/16x16/secure_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/16x16/secure_editor.png -------------------------------------------------------------------------------- /extension/skin/images/badges/16x16/stock_decrypted-signature-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/16x16/stock_decrypted-signature-bad.png -------------------------------------------------------------------------------- /extension/skin/images/badges/16x16/stock_decrypted-signature-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/16x16/stock_decrypted-signature-ok.png -------------------------------------------------------------------------------- /extension/skin/images/badges/16x16/stock_decrypted-signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/16x16/stock_decrypted-signature.png -------------------------------------------------------------------------------- /extension/skin/images/badges/16x16/stock_decrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/16x16/stock_decrypted.png -------------------------------------------------------------------------------- /extension/skin/images/badges/16x16/stock_encrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/16x16/stock_encrypted.png -------------------------------------------------------------------------------- /extension/skin/images/badges/16x16/stock_encrypted_signed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/16x16/stock_encrypted_signed.png -------------------------------------------------------------------------------- /extension/skin/images/badges/16x16/stock_keypair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/16x16/stock_keypair.png -------------------------------------------------------------------------------- /extension/skin/images/badges/16x16/stock_signature-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/16x16/stock_signature-attachment.png -------------------------------------------------------------------------------- /extension/skin/images/badges/16x16/stock_signature-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/16x16/stock_signature-bad.png -------------------------------------------------------------------------------- /extension/skin/images/badges/16x16/stock_signature-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/16x16/stock_signature-ok.png -------------------------------------------------------------------------------- /extension/skin/images/badges/16x16/stock_signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/16x16/stock_signature.png -------------------------------------------------------------------------------- /extension/skin/images/badges/16x16/webpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/16x16/webpg.png -------------------------------------------------------------------------------- /extension/skin/images/badges/20x20/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/20x20/about.png -------------------------------------------------------------------------------- /extension/skin/images/badges/20x20/secure_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/20x20/secure_editor.png -------------------------------------------------------------------------------- /extension/skin/images/badges/20x20/stock_decrypted-signature-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/20x20/stock_decrypted-signature-bad.png -------------------------------------------------------------------------------- /extension/skin/images/badges/20x20/stock_decrypted-signature-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/20x20/stock_decrypted-signature-ok.png -------------------------------------------------------------------------------- /extension/skin/images/badges/20x20/stock_decrypted-signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/20x20/stock_decrypted-signature.png -------------------------------------------------------------------------------- /extension/skin/images/badges/20x20/stock_decrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/20x20/stock_decrypted.png -------------------------------------------------------------------------------- /extension/skin/images/badges/20x20/stock_encrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/20x20/stock_encrypted.png -------------------------------------------------------------------------------- /extension/skin/images/badges/20x20/stock_encrypted_signed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/20x20/stock_encrypted_signed.png -------------------------------------------------------------------------------- /extension/skin/images/badges/20x20/stock_keypair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/20x20/stock_keypair.png -------------------------------------------------------------------------------- /extension/skin/images/badges/20x20/stock_signature-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/20x20/stock_signature-attachment.png -------------------------------------------------------------------------------- /extension/skin/images/badges/20x20/stock_signature-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/20x20/stock_signature-bad.png -------------------------------------------------------------------------------- /extension/skin/images/badges/20x20/stock_signature-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/20x20/stock_signature-ok.png -------------------------------------------------------------------------------- /extension/skin/images/badges/20x20/stock_signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/20x20/stock_signature.png -------------------------------------------------------------------------------- /extension/skin/images/badges/20x20/webpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/20x20/webpg.png -------------------------------------------------------------------------------- /extension/skin/images/badges/24x24/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/24x24/about.png -------------------------------------------------------------------------------- /extension/skin/images/badges/24x24/secure_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/24x24/secure_editor.png -------------------------------------------------------------------------------- /extension/skin/images/badges/24x24/stock_decrypted-signature-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/24x24/stock_decrypted-signature-bad.png -------------------------------------------------------------------------------- /extension/skin/images/badges/24x24/stock_decrypted-signature-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/24x24/stock_decrypted-signature-ok.png -------------------------------------------------------------------------------- /extension/skin/images/badges/24x24/stock_decrypted-signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/24x24/stock_decrypted-signature.png -------------------------------------------------------------------------------- /extension/skin/images/badges/24x24/stock_decrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/24x24/stock_decrypted.png -------------------------------------------------------------------------------- /extension/skin/images/badges/24x24/stock_encrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/24x24/stock_encrypted.png -------------------------------------------------------------------------------- /extension/skin/images/badges/24x24/stock_encrypted_signed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/24x24/stock_encrypted_signed.png -------------------------------------------------------------------------------- /extension/skin/images/badges/24x24/stock_keypair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/24x24/stock_keypair.png -------------------------------------------------------------------------------- /extension/skin/images/badges/24x24/stock_signature-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/24x24/stock_signature-attachment.png -------------------------------------------------------------------------------- /extension/skin/images/badges/24x24/stock_signature-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/24x24/stock_signature-bad.png -------------------------------------------------------------------------------- /extension/skin/images/badges/24x24/stock_signature-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/24x24/stock_signature-ok.png -------------------------------------------------------------------------------- /extension/skin/images/badges/24x24/stock_signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/24x24/stock_signature.png -------------------------------------------------------------------------------- /extension/skin/images/badges/24x24/webpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/24x24/webpg.png -------------------------------------------------------------------------------- /extension/skin/images/badges/32x32/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/32x32/about.png -------------------------------------------------------------------------------- /extension/skin/images/badges/32x32/secure_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/32x32/secure_editor.png -------------------------------------------------------------------------------- /extension/skin/images/badges/32x32/stock_decrypted-signature-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/32x32/stock_decrypted-signature-bad.png -------------------------------------------------------------------------------- /extension/skin/images/badges/32x32/stock_decrypted-signature-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/32x32/stock_decrypted-signature-ok.png -------------------------------------------------------------------------------- /extension/skin/images/badges/32x32/stock_decrypted-signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/32x32/stock_decrypted-signature.png -------------------------------------------------------------------------------- /extension/skin/images/badges/32x32/stock_decrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/32x32/stock_decrypted.png -------------------------------------------------------------------------------- /extension/skin/images/badges/32x32/stock_encrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/32x32/stock_encrypted.png -------------------------------------------------------------------------------- /extension/skin/images/badges/32x32/stock_encrypted_signed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/32x32/stock_encrypted_signed.png -------------------------------------------------------------------------------- /extension/skin/images/badges/32x32/stock_keypair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/32x32/stock_keypair.png -------------------------------------------------------------------------------- /extension/skin/images/badges/32x32/stock_signature-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/32x32/stock_signature-attachment.png -------------------------------------------------------------------------------- /extension/skin/images/badges/32x32/stock_signature-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/32x32/stock_signature-bad.png -------------------------------------------------------------------------------- /extension/skin/images/badges/32x32/stock_signature-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/32x32/stock_signature-ok.png -------------------------------------------------------------------------------- /extension/skin/images/badges/32x32/stock_signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/32x32/stock_signature.png -------------------------------------------------------------------------------- /extension/skin/images/badges/32x32/webpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/32x32/webpg.png -------------------------------------------------------------------------------- /extension/skin/images/badges/48x48/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/48x48/about.png -------------------------------------------------------------------------------- /extension/skin/images/badges/48x48/secure_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/48x48/secure_editor.png -------------------------------------------------------------------------------- /extension/skin/images/badges/48x48/stock_decrypted-signature-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/48x48/stock_decrypted-signature-bad.png -------------------------------------------------------------------------------- /extension/skin/images/badges/48x48/stock_decrypted-signature-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/48x48/stock_decrypted-signature-ok.png -------------------------------------------------------------------------------- /extension/skin/images/badges/48x48/stock_decrypted-signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/48x48/stock_decrypted-signature.png -------------------------------------------------------------------------------- /extension/skin/images/badges/48x48/stock_decrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/48x48/stock_decrypted.png -------------------------------------------------------------------------------- /extension/skin/images/badges/48x48/stock_encrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/48x48/stock_encrypted.png -------------------------------------------------------------------------------- /extension/skin/images/badges/48x48/stock_encrypted_signed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/48x48/stock_encrypted_signed.png -------------------------------------------------------------------------------- /extension/skin/images/badges/48x48/stock_keypair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/48x48/stock_keypair.png -------------------------------------------------------------------------------- /extension/skin/images/badges/48x48/stock_signature-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/48x48/stock_signature-attachment.png -------------------------------------------------------------------------------- /extension/skin/images/badges/48x48/stock_signature-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/48x48/stock_signature-bad.png -------------------------------------------------------------------------------- /extension/skin/images/badges/48x48/stock_signature-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/48x48/stock_signature-ok.png -------------------------------------------------------------------------------- /extension/skin/images/badges/48x48/stock_signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/48x48/stock_signature.png -------------------------------------------------------------------------------- /extension/skin/images/badges/48x48/webpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/badges/48x48/webpg.png -------------------------------------------------------------------------------- /extension/skin/images/cancel-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/cancel-small.png -------------------------------------------------------------------------------- /extension/skin/images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/cancel.png -------------------------------------------------------------------------------- /extension/skin/images/check-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/check-small.png -------------------------------------------------------------------------------- /extension/skin/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/check.png -------------------------------------------------------------------------------- /extension/skin/images/examples/inline-formatting-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/examples/inline-formatting-icon.png -------------------------------------------------------------------------------- /extension/skin/images/examples/inline-formatting-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/examples/inline-formatting-window.png -------------------------------------------------------------------------------- /extension/skin/images/examples/toolbar-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/examples/toolbar-sample.png -------------------------------------------------------------------------------- /extension/skin/images/expand-collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/expand-collapse.gif -------------------------------------------------------------------------------- /extension/skin/images/help_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/help_arrow.png -------------------------------------------------------------------------------- /extension/skin/images/menumask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/menumask.png -------------------------------------------------------------------------------- /extension/skin/images/webpg-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/webpg-128.png -------------------------------------------------------------------------------- /extension/skin/images/webpg-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/webpg-64.png -------------------------------------------------------------------------------- /extension/skin/images/webpg-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/images/webpg-96.png -------------------------------------------------------------------------------- /extension/skin/keymanager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/keymanager.css -------------------------------------------------------------------------------- /extension/skin/overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/skin/overlay.css -------------------------------------------------------------------------------- /extension/userdocs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/userdocs.html -------------------------------------------------------------------------------- /extension/userdocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/userdocs.js -------------------------------------------------------------------------------- /extension/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/utils.js -------------------------------------------------------------------------------- /extension/webmail/gmail/gmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/webmail/gmail/gmail.js -------------------------------------------------------------------------------- /extension/webpg_overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/webpg_overlay.js -------------------------------------------------------------------------------- /extension/webpg_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/webpg_results.html -------------------------------------------------------------------------------- /extension/webpg_results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/webpg_results.js -------------------------------------------------------------------------------- /extension/xoauth2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension/xoauth2.js -------------------------------------------------------------------------------- /extension_tests/various_tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/extension_tests/various_tests.html -------------------------------------------------------------------------------- /generate_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/generate_docs.sh -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/install.rdf -------------------------------------------------------------------------------- /locale/ar/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/ar/webpg.dtd -------------------------------------------------------------------------------- /locale/ar/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/ar/webpg.properties -------------------------------------------------------------------------------- /locale/bg/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/bg/webpg.dtd -------------------------------------------------------------------------------- /locale/bg/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/bg/webpg.properties -------------------------------------------------------------------------------- /locale/ca/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/ca/webpg.dtd -------------------------------------------------------------------------------- /locale/ca/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/ca/webpg.properties -------------------------------------------------------------------------------- /locale/cs/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/cs/webpg.dtd -------------------------------------------------------------------------------- /locale/cs/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/cs/webpg.properties -------------------------------------------------------------------------------- /locale/da/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/da/webpg.dtd -------------------------------------------------------------------------------- /locale/da/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/da/webpg.properties -------------------------------------------------------------------------------- /locale/de/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/de/webpg.dtd -------------------------------------------------------------------------------- /locale/de/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/de/webpg.properties -------------------------------------------------------------------------------- /locale/el/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/el/webpg.dtd -------------------------------------------------------------------------------- /locale/el/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/el/webpg.properties -------------------------------------------------------------------------------- /locale/en/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/en/webpg.dtd -------------------------------------------------------------------------------- /locale/en/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/en/webpg.properties -------------------------------------------------------------------------------- /locale/en_GB/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/en_GB/webpg.dtd -------------------------------------------------------------------------------- /locale/en_GB/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/en_GB/webpg.properties -------------------------------------------------------------------------------- /locale/en_US/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/en_US/webpg.dtd -------------------------------------------------------------------------------- /locale/en_US/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/en_US/webpg.properties -------------------------------------------------------------------------------- /locale/es/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/es/webpg.dtd -------------------------------------------------------------------------------- /locale/es/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/es/webpg.properties -------------------------------------------------------------------------------- /locale/es_419/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/es_419/webpg.dtd -------------------------------------------------------------------------------- /locale/es_419/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/es_419/webpg.properties -------------------------------------------------------------------------------- /locale/et/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/et/webpg.dtd -------------------------------------------------------------------------------- /locale/et/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/et/webpg.properties -------------------------------------------------------------------------------- /locale/fi/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/fi/webpg.dtd -------------------------------------------------------------------------------- /locale/fi/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/fi/webpg.properties -------------------------------------------------------------------------------- /locale/fil/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/fil/webpg.dtd -------------------------------------------------------------------------------- /locale/fil/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/fil/webpg.properties -------------------------------------------------------------------------------- /locale/fr/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/fr/webpg.dtd -------------------------------------------------------------------------------- /locale/fr/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/fr/webpg.properties -------------------------------------------------------------------------------- /locale/he/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/he/webpg.dtd -------------------------------------------------------------------------------- /locale/he/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/he/webpg.properties -------------------------------------------------------------------------------- /locale/hi/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/hi/webpg.dtd -------------------------------------------------------------------------------- /locale/hi/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/hi/webpg.properties -------------------------------------------------------------------------------- /locale/hr/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/hr/webpg.dtd -------------------------------------------------------------------------------- /locale/hr/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/hr/webpg.properties -------------------------------------------------------------------------------- /locale/hu/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/hu/webpg.dtd -------------------------------------------------------------------------------- /locale/hu/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/hu/webpg.properties -------------------------------------------------------------------------------- /locale/id/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/id/webpg.dtd -------------------------------------------------------------------------------- /locale/id/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/id/webpg.properties -------------------------------------------------------------------------------- /locale/it/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/it/webpg.dtd -------------------------------------------------------------------------------- /locale/it/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/it/webpg.properties -------------------------------------------------------------------------------- /locale/ja/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/ja/webpg.dtd -------------------------------------------------------------------------------- /locale/ja/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/ja/webpg.properties -------------------------------------------------------------------------------- /locale/ko/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/ko/webpg.dtd -------------------------------------------------------------------------------- /locale/ko/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/ko/webpg.properties -------------------------------------------------------------------------------- /locale/lt/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/lt/webpg.dtd -------------------------------------------------------------------------------- /locale/lt/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/lt/webpg.properties -------------------------------------------------------------------------------- /locale/lv/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/lv/webpg.dtd -------------------------------------------------------------------------------- /locale/lv/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/lv/webpg.properties -------------------------------------------------------------------------------- /locale/nl/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/nl/webpg.dtd -------------------------------------------------------------------------------- /locale/nl/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/nl/webpg.properties -------------------------------------------------------------------------------- /locale/np/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/np/webpg.dtd -------------------------------------------------------------------------------- /locale/np/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/np/webpg.properties -------------------------------------------------------------------------------- /locale/pl/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/pl/webpg.dtd -------------------------------------------------------------------------------- /locale/pl/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/pl/webpg.properties -------------------------------------------------------------------------------- /locale/pt_BR/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/pt_BR/webpg.dtd -------------------------------------------------------------------------------- /locale/pt_BR/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/pt_BR/webpg.properties -------------------------------------------------------------------------------- /locale/pt_PT/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/pt_PT/webpg.dtd -------------------------------------------------------------------------------- /locale/pt_PT/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/pt_PT/webpg.properties -------------------------------------------------------------------------------- /locale/ro/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/ro/webpg.dtd -------------------------------------------------------------------------------- /locale/ro/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/ro/webpg.properties -------------------------------------------------------------------------------- /locale/ru/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/ru/webpg.dtd -------------------------------------------------------------------------------- /locale/ru/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/ru/webpg.properties -------------------------------------------------------------------------------- /locale/sk/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/sk/webpg.dtd -------------------------------------------------------------------------------- /locale/sk/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/sk/webpg.properties -------------------------------------------------------------------------------- /locale/sl/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/sl/webpg.dtd -------------------------------------------------------------------------------- /locale/sl/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/sl/webpg.properties -------------------------------------------------------------------------------- /locale/sr/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/sr/webpg.dtd -------------------------------------------------------------------------------- /locale/sr/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/sr/webpg.properties -------------------------------------------------------------------------------- /locale/sv/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/sv/webpg.dtd -------------------------------------------------------------------------------- /locale/sv/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/sv/webpg.properties -------------------------------------------------------------------------------- /locale/th/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/th/webpg.dtd -------------------------------------------------------------------------------- /locale/th/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/th/webpg.properties -------------------------------------------------------------------------------- /locale/tr/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/tr/webpg.dtd -------------------------------------------------------------------------------- /locale/tr/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/tr/webpg.properties -------------------------------------------------------------------------------- /locale/uk/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/uk/webpg.dtd -------------------------------------------------------------------------------- /locale/uk/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/uk/webpg.properties -------------------------------------------------------------------------------- /locale/vi/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/vi/webpg.dtd -------------------------------------------------------------------------------- /locale/vi/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/vi/webpg.properties -------------------------------------------------------------------------------- /locale/zh_CN/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/zh_CN/webpg.dtd -------------------------------------------------------------------------------- /locale/zh_CN/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/zh_CN/webpg.properties -------------------------------------------------------------------------------- /locale/zh_TW/webpg.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/zh_TW/webpg.dtd -------------------------------------------------------------------------------- /locale/zh_TW/webpg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/locale/zh_TW/webpg.properties -------------------------------------------------------------------------------- /plugins/libassuan-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/plugins/libassuan-0.dll -------------------------------------------------------------------------------- /plugins/libgpg-error-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/plugins/libgpg-error-0.dll -------------------------------------------------------------------------------- /plugins/libgpgme-11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/plugins/libgpgme-11.dll -------------------------------------------------------------------------------- /plugins/npwebpg-ext-v0.7.0-Darwin_x86_64-gcc.plugin/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/plugins/npwebpg-ext-v0.7.0-Darwin_x86_64-gcc.plugin/Contents/Info.plist -------------------------------------------------------------------------------- /plugins/npwebpg-ext-v0.7.0-Darwin_x86_64-gcc.plugin/Contents/MacOS/npwebpg-ext-v0.7.0-Darwin_x86_64-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/plugins/npwebpg-ext-v0.7.0-Darwin_x86_64-gcc.plugin/Contents/MacOS/npwebpg-ext-v0.7.0-Darwin_x86_64-gcc -------------------------------------------------------------------------------- /plugins/npwebpg-ext-v0.7.0-Darwin_x86_64-gcc.plugin/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/plugins/npwebpg-ext-v0.7.0-Darwin_x86_64-gcc.plugin/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /plugins/npwebpg-ext-v0.7.0-Darwin_x86_64-gcc.plugin/Contents/Resources/English.lproj/Localized.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/plugins/npwebpg-ext-v0.7.0-Darwin_x86_64-gcc.plugin/Contents/Resources/English.lproj/Localized.rsrc -------------------------------------------------------------------------------- /plugins/npwebpg-ext-v0.7.0-Linux_x86-gcc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/plugins/npwebpg-ext-v0.7.0-Linux_x86-gcc.so -------------------------------------------------------------------------------- /plugins/npwebpg-ext-v0.7.0-Linux_x86_64-gcc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/plugins/npwebpg-ext-v0.7.0-Linux_x86_64-gcc.so -------------------------------------------------------------------------------- /plugins/npwebpg-ext-v0.7.0-WINNT_x86-msvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/plugins/npwebpg-ext-v0.7.0-WINNT_x86-msvc.dll -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/en.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/en_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/en_US.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/es.po -------------------------------------------------------------------------------- /po/es_419.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/es_419.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/et.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fil.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/fil.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/id.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/np.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/np.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/pt_PT.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/webpg.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/webpg.pot -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /update_translations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/update_translations.sh -------------------------------------------------------------------------------- /webpg-babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehuff/webpg-firefox/HEAD/webpg-babel.cfg --------------------------------------------------------------------------------