├── .gitignore ├── LICENSE ├── README.md ├── alpha ├── tb-notepad │ ├── browser.js │ ├── browser.xul │ ├── description │ └── image └── tiny-url │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ └── preferences ├── configs ├── about-config.json ├── addons.json ├── bookmark-buttons.json ├── cookie-buttons.json ├── download-buttons.json ├── extension-buttons.json ├── find.json ├── foward-backwards-buttons.json ├── history-buttons.json ├── page-navigation.json ├── personal-bookmarks-menu-button.json ├── print-buttons.json ├── profile-buttons.json ├── reload-skip-cache.json ├── restart-app.json ├── tab-buttons.json ├── tb-about-about.json ├── tb-addon-options.json ├── tb-all-menus.json ├── tb-clear-cache.json ├── tb-color-picker.json ├── tb-external-application.json ├── tb-free-memory.json ├── tb-web-developer.json ├── toolbar-tools-buttons.json ├── undo-close-tab-buttons.json ├── use-document-colors-fonts.json ├── web-navigation-buttons.json └── zoom_buttons.json ├── data ├── about-application │ ├── button.xul │ ├── description │ ├── image │ ├── key │ ├── legacy │ └── suite_browser.xul ├── about-cache │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ └── preferences ├── about-config │ ├── background.js │ ├── button.xul │ ├── description │ ├── image │ ├── key │ ├── legacy │ └── preferences ├── about-disk-cache │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ └── preferences ├── about-mem-cache │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ └── preferences ├── about-plugins │ ├── button.xul │ ├── description │ ├── image │ ├── legacy │ └── preferences ├── accountmanager │ ├── description │ ├── image │ └── messenger.xul ├── accountwizard │ ├── compose.xul │ ├── description │ ├── image │ └── mail.xul ├── add-address │ ├── description │ ├── image │ ├── mail.js │ └── mail.xul ├── addons │ ├── browser.xul │ ├── calendar.xul │ ├── description │ ├── image │ ├── legacy │ ├── messenger.xul │ ├── style.css │ └── suite_browser.xul ├── all-threads │ ├── description │ ├── image │ └── mail.xul ├── attachments-delete │ ├── description │ ├── image │ ├── mail.xul │ └── read.xul ├── attachments-detach │ ├── description │ ├── image │ ├── mail.xul │ └── read.xul ├── attachments-save │ ├── description │ ├── image │ ├── mail.xul │ └── read.xul ├── bookmark-manager │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── extended_option.xul │ ├── image │ ├── preferences │ └── suite_browser.xul ├── bookmark-nopop │ ├── browser.js │ ├── browser.xul │ ├── description │ └── image ├── bookmark-tabs │ ├── browser.xul │ ├── description │ └── image ├── bookmark │ ├── browser.xul │ ├── description │ └── image ├── bookmarks-menu-button1 │ ├── browser.xul │ ├── description │ └── image ├── bookmarks-menu-button2 │ ├── browser.js │ ├── browser.xul │ ├── description │ └── image ├── bottom-page │ ├── background.js │ ├── browser.xul │ ├── description │ ├── image │ ├── key │ └── manifest.json ├── change-text-direction │ ├── browser.xul │ ├── button.js │ ├── description │ ├── image │ ├── mail.xul │ └── read.xul ├── clear-data │ ├── browser.xul │ ├── description │ └── image ├── clear-url │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ └── legacy ├── clipboard-button │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── extended_option.xul │ ├── image │ └── preferences ├── close-all-tabs │ ├── background.js │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── manifest.json │ ├── option │ │ ├── option.html │ │ └── option.js │ └── strings ├── close-other-tabs │ ├── background.js │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── manifest.json │ ├── option │ │ ├── option.html │ │ └── option.js │ └── strings ├── close-tab │ ├── background.js │ ├── browser.xul │ ├── description │ ├── image │ └── manifest.json ├── compact │ ├── description │ ├── image │ └── mail.xul ├── create-filter │ ├── description │ ├── image │ └── mail.xul ├── customize-toolbar │ ├── button.xul │ ├── compose.xul │ ├── description │ ├── image │ ├── legacy │ ├── messenger.xul │ └── suite_browser.xul ├── delete-button │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ └── messenger.xul ├── delete-event │ ├── calendar.js │ ├── calendar.xul │ ├── description │ └── image ├── delete-junk │ ├── description │ ├── image │ └── mail.xul ├── delete-tasks │ ├── calendar.js │ ├── calendar.xul │ ├── description │ └── image ├── dictionary-list │ ├── browser.xul │ ├── button.js │ ├── description │ ├── image │ ├── legacy │ └── messenger.xul ├── ebay │ ├── browser.xul │ ├── description │ ├── extended_option.xul │ ├── image │ └── preferences ├── edit-as-new │ ├── description │ ├── image │ ├── mail-header.xul │ └── mail.xul ├── edit-draft │ ├── description │ ├── image │ └── mail.xul ├── empty-trash │ ├── description │ ├── image │ ├── mail.js │ ├── mail.xul │ └── modules ├── enlarge │ ├── browser.xul │ ├── description │ ├── image │ ├── mail-header.xul │ ├── mail.xul │ ├── read.xul │ └── suite_browser.xul ├── exit │ ├── button.xul │ ├── compose.xul │ ├── description │ ├── image │ ├── legacy │ └── messenger.xul ├── extensions │ ├── button.xul │ ├── description │ ├── extended_button.xul │ ├── image │ └── legacy ├── favorite-page │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── option.xul │ └── preferences ├── find-again │ ├── browser.xul │ ├── compose.xul │ ├── description │ ├── image │ ├── mail.xul │ ├── read.xul │ └── suite_browser.xul ├── find-prev │ ├── browser.xul │ ├── compose.xul │ ├── description │ ├── image │ ├── mail.xul │ ├── read.xul │ └── suite_browser.xul ├── find │ ├── browser.js │ ├── browser.xul │ ├── browser_option.xul │ ├── description │ ├── image │ ├── messenger.xul │ └── preferences ├── firefox-extension │ ├── browser.xul │ ├── description │ ├── extended_option.xul │ ├── image │ ├── preferences │ ├── suite_browser.xul │ └── suite_option.xul ├── firefox-theme │ ├── browser.xul │ ├── description │ ├── extended_option.xul │ ├── image │ ├── preferences │ ├── suite_browser.xul │ └── suite_option.xul ├── forward-as-attachment │ ├── description │ ├── image │ ├── mail-header.xul │ ├── mail.xul │ └── read.xul ├── forward-as-inline │ ├── description │ ├── image │ ├── mail-header.xul │ ├── mail.xul │ └── read.xul ├── full-screen │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ └── preferences ├── gmail │ ├── browser.xul │ ├── description │ ├── extended_option.xul │ ├── image │ └── preferences ├── google │ ├── browser.xul │ ├── description │ ├── extended_option.xul │ ├── image │ └── preferences ├── help │ ├── browser.xul │ ├── description │ ├── image │ ├── key │ ├── legacy │ ├── messenger.xul │ └── suite_browser.xul ├── hide-images │ ├── browser.js │ ├── browser.xul │ ├── description │ └── image ├── hotmail-button │ ├── browser.xul │ ├── description │ ├── extended_option.xul │ ├── image │ └── preferences ├── html-mode │ ├── description │ ├── image │ ├── mail-header.xul │ ├── mail.xul │ ├── messenger.js │ └── read.xul ├── image-toggle │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ └── preferences ├── import │ ├── button.js │ ├── calendar.xul │ ├── description │ ├── image │ ├── messenger.xul │ └── portal.xul ├── inspecter │ ├── browser.xul │ ├── button.js │ ├── calendar.xul │ ├── description │ ├── image │ └── mail.xul ├── installaddons │ ├── button.xul │ ├── description │ ├── image │ ├── legacy │ └── preferences ├── java-toggle │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ └── preferences ├── javaScriptConsole │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── extended_option.xul │ ├── image │ ├── legacy │ ├── messenger.xul │ ├── preferences │ ├── strings │ └── suite_browser.xul ├── javascript-toggle │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ └── preferences ├── label-all-blank │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ └── legacy ├── label-blank │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ └── legacy ├── link-open │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ └── legacy ├── min-font-size │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ └── preferences ├── minimize-window │ ├── button.xul │ ├── description │ └── image ├── msg-filter │ ├── description │ ├── image │ └── mail.xul ├── msg-pane │ ├── description │ ├── image │ └── mail.xul ├── new-message │ ├── browser.xul │ ├── description │ ├── image │ └── suite_browser.xul ├── next-tab │ ├── browser.xul │ ├── description │ └── image ├── open-current-frame │ ├── browser.xul │ ├── description │ └── image ├── page-source │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── mail.xul │ └── read.xul ├── pageinfo │ ├── browser.xul │ ├── description │ └── image ├── pagesetup │ ├── button.xul │ ├── description │ ├── image │ ├── messenger.xul │ └── suite_browser.xul ├── paypal │ ├── browser.xul │ ├── description │ ├── extended_option.xul │ ├── image │ └── preferences ├── personal-bookmarks-menu-button │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── manifest.json │ └── popup │ │ ├── panel.css │ │ ├── panel.html │ │ └── panel.js ├── plainpaste │ ├── compose.xul │ ├── description │ └── image ├── preferences │ ├── browser.js │ ├── browser.xul │ ├── calendar.xul │ ├── description │ ├── image │ ├── key │ ├── legacy │ ├── mail.js │ ├── mail.xul │ └── messenger.xul ├── previous-tab │ ├── browser.xul │ ├── description │ └── image ├── print-preview │ ├── background.js │ ├── browser.xul │ ├── description │ ├── image │ ├── mail.xul │ ├── manifest.json │ ├── read.xul │ └── suite_browser.xul ├── profile-folder │ ├── button.js │ ├── button.xul │ ├── description │ ├── image │ ├── key │ ├── legacy │ ├── option.xul │ ├── preferences │ └── strings ├── purge │ ├── description │ ├── image │ └── mail.xul ├── read-mail │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── option.xul │ └── preferences ├── read-news │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── option.xul │ └── preferences ├── realNextMessage │ ├── description │ ├── image │ ├── mail-header.xul │ ├── mail.xul │ ├── messenger.js │ ├── preferences │ └── read.xul ├── realPreviousMessage │ ├── description │ ├── image │ ├── mail-header.xul │ ├── mail.xul │ ├── messenger.js │ ├── preferences │ └── read.xul ├── redo │ ├── button.xul │ ├── description │ ├── image │ ├── legacy │ ├── mail-address-book.xul │ └── mail.xul ├── reduce │ ├── browser.xul │ ├── description │ ├── image │ ├── mail-header.xul │ ├── mail.xul │ ├── read.xul │ └── suite_browser.xul ├── reload-all-tabs │ ├── background.js │ ├── browser.xul │ ├── description │ ├── image │ ├── manifest.json │ ├── option │ │ ├── option.html │ │ └── option.js │ └── strings ├── reload-proxy │ ├── button.js │ ├── button.xul │ ├── description │ └── image ├── reload-skip-cache │ ├── background.js │ ├── browser.xul │ ├── description │ ├── image │ ├── manifest.json │ └── suite_browser.xul ├── rename-tab │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ └── legacy ├── reply-sender │ ├── description │ ├── image │ ├── mail-header.xul │ └── mail.xul ├── reset │ ├── browser.xul │ ├── description │ ├── image │ ├── mail-header.xul │ ├── mail.xul │ ├── read.xul │ └── suite_browser.xul ├── restart-app │ ├── button.xul │ ├── description │ ├── image │ ├── key │ ├── legacy │ ├── option.xul │ └── preferences ├── return-receipt │ ├── compose.xul │ ├── description │ └── image ├── save-frame │ ├── browser.js │ ├── browser.xul │ ├── description │ └── image ├── saveas │ ├── background.js │ ├── browser.xul │ ├── compose.xul │ ├── description │ ├── image │ ├── mail.xul │ ├── manifest.json │ └── read.xul ├── search-addresses │ ├── description │ ├── image │ ├── messenger.js │ └── messenger.xul ├── search-messages │ ├── description │ ├── image │ ├── mail.xul │ └── read.xul ├── select-all │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ └── messenger.xul ├── send-link │ ├── browser.xul │ ├── description │ ├── image │ └── legacy ├── send-receive │ ├── description │ ├── image │ └── mail.xul ├── send-with-no-save │ ├── compose.js │ ├── compose.xul │ ├── description │ └── image ├── shift-delete │ ├── description │ ├── image │ ├── mail.xul │ └── read.xul ├── show-frame │ ├── browser.xul │ ├── description │ └── image ├── snap-back │ ├── background.js │ ├── browser.xul │ ├── description │ ├── image │ └── manifest.json ├── statusbar-toggle │ ├── browser.js │ ├── browser.xul │ ├── button.js │ ├── calendar.xul │ ├── description │ ├── image │ ├── key │ ├── legacy │ ├── messenger.xul │ ├── modules │ ├── preferences │ ├── suite_browser.js │ └── suite_browser.xul ├── stop-all │ ├── background.js │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ └── manifest.json ├── stop-animation │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── files │ │ └── marquee.css │ ├── image │ └── preferences ├── stop-cookies │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── preferences │ └── suite_browser.xul ├── stop-dynamic-content │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── file_list │ ├── files │ │ └── dcontent.css │ ├── image │ ├── preferences │ └── res_list ├── stop-flash │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── file_list │ ├── files │ │ └── flash.css │ ├── image │ ├── preferences │ └── res_list ├── stop-iframe │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── file_list │ ├── files │ │ └── iframe.css │ ├── image │ ├── preferences │ └── res_list ├── stop-movies │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── file_list │ ├── files │ │ └── movies.css │ ├── image │ ├── preferences │ └── res_list ├── tab-list │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── manifest.json │ ├── popup │ │ ├── panel.css │ │ ├── panel.html │ │ └── panel.js │ └── todo ├── tasks-in-view │ ├── calendar.js │ ├── calendar.xul │ ├── description │ └── image ├── tasks-toggle │ ├── calendar.js │ ├── calendar.xul │ ├── description │ └── image ├── tb-about-about │ ├── browser.xul │ ├── button.js │ ├── button.xul │ ├── description │ ├── image │ ├── legacy │ ├── preferences │ └── strings ├── tb-about-blank │ ├── browser.xul │ ├── description │ ├── image │ ├── preferences │ └── strings ├── tb-all-menus │ ├── button.js │ ├── button.xul │ ├── description │ ├── image │ ├── key │ ├── legacy │ ├── option.js │ ├── option.xul │ ├── preferences │ ├── setting_option.xul │ ├── strings │ └── style.css ├── tb-check-for-update │ ├── browser.xul │ ├── calander.xul │ ├── description │ ├── image │ ├── legacy │ └── mail.xul ├── tb-clear-cache │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── files │ │ └── backspace.svg │ ├── image │ ├── key │ ├── manifest.json │ ├── option.xul │ ├── option │ │ ├── option.html │ │ └── option.js │ ├── popup │ │ ├── panel.css │ │ ├── panel.html │ │ └── panel.js │ ├── preferences │ └── strings ├── tb-clear-search │ ├── browser.xul │ ├── description │ ├── image │ └── legacy ├── tb-clear-url │ ├── browser.xul │ ├── description │ ├── image │ └── legacy ├── tb-clone-tab │ ├── background.js │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── manifest.json │ ├── suite_browser.js │ └── suite_browser.xul ├── tb-cookie-manager │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── messenger.xul │ └── suite_browser.xul ├── tb-download-sync │ ├── description │ ├── image │ ├── mail.xul │ └── strings ├── tb-edit-menu │ ├── button.xul │ ├── description │ ├── image │ └── legacy ├── tb-file-menu │ ├── button.xul │ ├── description │ ├── image │ └── legacy ├── tb-history-menu │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ └── strings ├── tb-new-event │ ├── calendar.xul │ ├── description │ └── image ├── tb-new-tab │ ├── browser.xul │ ├── description │ ├── image │ └── strings ├── tb-new-task │ ├── calendar.xul │ ├── description │ └── image ├── tb-open-in-conversation │ ├── description │ ├── image │ └── mail.xul ├── tb-open │ ├── browser.xul │ ├── description │ ├── image │ └── mail.xul ├── tb-page-info-media │ ├── browser.xul │ ├── description │ └── image ├── tb-page-reload │ ├── description │ ├── image │ ├── portal.xul │ └── strings ├── tb-page-stop │ ├── description │ ├── image │ ├── portal.xul │ └── strings ├── tb-print-page │ ├── browser.xul │ ├── description │ ├── image │ └── strings ├── tb-saved-passwords │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── messenger.xul │ └── strings ├── tb-search-go-button │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ └── strings ├── tb-search-minus │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── strings │ └── style.css ├── tb-search-plus │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── strings │ └── style.css ├── tb-search-resize │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── strings │ └── style.css ├── tb-show-all-history │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── strings │ └── suite_browser.xul ├── tb-toggle-headers │ ├── description │ ├── image │ ├── mail.js │ └── mail.xul ├── tb-toggle-menu-bar │ ├── browser.js │ ├── browser.xul │ ├── compose.js │ ├── compose.xul │ ├── description │ ├── image │ ├── legacy │ ├── mail.js │ └── mail.xul ├── tb-toggle-popup-blocker │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── key │ └── legacy ├── tb-tools-menu │ ├── button.xul │ ├── description │ ├── image │ └── legacy ├── tb-twitter-button │ ├── browser.xul │ ├── description │ ├── extended_option.xul │ ├── image │ └── preferences ├── tb-url-go-button │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── strings │ └── suite_browser.xul ├── tb-view-menu │ ├── button.xul │ ├── description │ ├── image │ └── legacy ├── themes │ ├── button.xul │ ├── description │ ├── extended_button.xul │ ├── image │ └── legacy ├── thunderbird-extension │ ├── browser.xul │ ├── description │ ├── extended_option.xul │ ├── image │ ├── mail.xul │ └── preferences ├── thunderbird-theme │ ├── browser.xul │ ├── description │ ├── extended_option.xul │ ├── image │ ├── mail.xul │ └── preferences ├── toggle-bookmark-toolbar │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ └── legacy ├── toggle-proxy │ ├── button.js │ ├── button.xul │ ├── description │ ├── image │ ├── option.xul │ └── preferences ├── toggle-read │ ├── description │ ├── image │ ├── mail-header.xul │ ├── mail.xul │ └── read.xul ├── toggle-styles │ ├── browser.js │ ├── browser.xul │ ├── description │ └── image ├── toggle-toolbar │ ├── browser.js │ ├── browser.xul │ ├── calendar.js │ ├── calendar.xul │ ├── description │ ├── image │ ├── legacy │ ├── mail.js │ └── mail.xul ├── toolbar-menu │ ├── browser.xul │ ├── calander.xul │ ├── compose.xul │ ├── description │ ├── image │ ├── legacy │ ├── messenger.xul │ └── suite_browser.xul ├── top-page │ ├── background.js │ ├── browser.xul │ ├── description │ ├── image │ ├── key │ └── manifest.json ├── translate │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── option.js │ ├── option.xul │ ├── preferences │ └── strings ├── undo-close-tab │ ├── _locales │ │ ├── ar │ │ │ └── messages.json │ │ ├── cs_CZ │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── en_US │ │ │ └── messages.json │ │ ├── es_AR │ │ │ └── messages.json │ │ ├── es_ES │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── he_IL │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja_JP │ │ │ └── messages.json │ │ ├── ko_KR │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt_BR │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru_RU │ │ │ └── messages.json │ │ ├── sk_SK │ │ │ └── messages.json │ │ ├── sl_SI │ │ │ └── messages.json │ │ ├── sv_SE │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── zh_CN │ │ │ └── messages.json │ │ └── zh_TW │ │ │ └── messages.json │ ├── background.js │ ├── browser.xul │ ├── description │ ├── image │ ├── manifest.json │ ├── messages.json │ ├── option.xul │ ├── option │ │ ├── option.html │ │ └── option.js │ ├── popup │ │ ├── panel.css │ │ ├── panel.html │ │ └── panel.js │ ├── preferences │ ├── strings │ ├── style.css │ └── suite_browser.xul ├── undo │ ├── button.xul │ ├── description │ ├── image │ ├── legacy │ ├── mail-address-book.xul │ └── messenger.xul ├── up-directory │ ├── browser.js │ ├── browser.xul │ ├── description │ └── image ├── use-document-colors │ ├── browser.xul │ ├── button.js │ ├── description │ ├── image │ ├── key │ ├── mail.xul │ └── read.xul ├── use-document-fonts │ ├── browser.xul │ ├── button.js │ ├── description │ ├── image │ ├── key │ ├── mail.xul │ └── read.xul ├── websearch │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ └── suite_browser.xul ├── wikipedia │ ├── browser.xul │ ├── description │ ├── extended_option.xul │ ├── image │ └── preferences ├── workoffline │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── mail.xul │ ├── read.xul │ └── suite_browser.xul └── yahoo-button │ ├── browser.xul │ ├── description │ ├── extended_option.xul │ ├── image │ └── preferences ├── default.json ├── depreciated ├── about-firefox │ ├── button.xul │ ├── description │ ├── hidden │ ├── image │ ├── strings │ └── suite_browser.xul ├── open │ ├── browser.xul │ ├── description │ ├── hidden │ ├── image │ ├── mail.xul │ └── strings ├── tb-page-go │ ├── browser.xul │ ├── description │ ├── hidden │ ├── image │ ├── strings │ └── suite_browser.xul └── tb-reload-all-tabs │ ├── browser.xul │ ├── description │ ├── hidden │ ├── image │ └── strings ├── files ├── LICENSE ├── block.png ├── block.xml ├── icon.png ├── icons │ ├── browser.png │ ├── calendar.png │ ├── messenger.png │ └── suite.png ├── install.rdf ├── interfaces ├── lib │ ├── addons.js │ ├── cookies.js │ ├── extensions.js │ ├── functions.js │ ├── history.js │ ├── open_page.js │ ├── pref.js │ ├── restart.js │ ├── string_database.js │ └── toolbar.js ├── play.png ├── string-preference.js ├── string-preference.xul ├── toolbar-back.png └── top.png ├── find_app_string.sh ├── icons ├── 16 │ └── codefisher.png ├── 24 │ └── codefisher.png ├── 32 │ └── codefisher.png └── 48 │ └── codefisher.png ├── locale ├── ar │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ └── pre_options.dtd ├── cs-CZ │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ └── options.dtd ├── de │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── el │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── en-US │ ├── button.properties │ ├── button_labels.properties │ ├── files.dtd │ ├── meta.dtd │ ├── options.dtd │ └── singles.properties ├── es-AR │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── es-ES │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── fi │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── fr │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── he-IL │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ └── options.dtd ├── it │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── ja-JP │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── ko-KR │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── nl │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── pl │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── pt-BR │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── ro │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── ru-RU │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── sk-SK │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── sl-SI │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── sv-SE │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── tr │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ └── pre_options.dtd ├── zh-CN │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd ├── zh-TW │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ ├── options.dtd │ ├── pre_button.dtd │ ├── pre_button.properties │ ├── pre_button_labels.properties │ ├── pre_files.dtd │ └── pre_options.dtd └── zh │ ├── button.dtd │ ├── button.properties │ ├── meta.dtd │ └── options.dtd ├── make.sh ├── nightly.json ├── nightly.sh ├── options ├── always.new.tab.xul ├── delete.cookies.check.xul ├── do.reload.xul ├── next.xul ├── showamenu.reload-skip-cache-extra-ui.xul └── showamenu.tb-free-memory-extra-ui.xul ├── pre.json ├── pre ├── tb-about-permissions │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── strings │ └── suite_browser.xul ├── tb-addon-options │ ├── browser.xul │ ├── button.js │ ├── button.xul │ ├── description │ ├── image │ ├── legacy │ └── strings ├── tb-addons-exceptions │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ └── suite_browser.xul ├── tb-archive-thread │ ├── description │ ├── image │ ├── key │ ├── mail-header.xul │ ├── mail.xul │ ├── messenger.js │ ├── read.xul │ └── strings ├── tb-base64 │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ └── strings ├── tb-bookmark-sidebar │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── strings │ └── suite_browser.xul ├── tb-browser-console │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── strings │ └── suite_browser.xul ├── tb-codefisher │ ├── button.xul │ ├── description │ ├── image │ ├── preferences │ └── strings ├── tb-color-picker │ ├── _locales │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── en-US │ │ │ └── messages.json │ │ ├── es-AR │ │ │ └── messages.json │ │ ├── es-ES │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja-JP │ │ │ └── messages.json │ │ ├── ko-KR │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-BR │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru-RU │ │ │ └── messages.json │ │ ├── sk-SK │ │ │ └── messages.json │ │ ├── sv-SE │ │ │ └── messages.json │ │ ├── zh-CN │ │ │ └── messages.json │ │ └── zh-TW │ │ │ └── messages.json │ ├── background.js │ ├── browser.xul │ ├── button.js │ ├── description │ ├── files │ │ ├── back.png │ │ ├── close.png │ │ ├── color-wheel.svg │ │ ├── colorpicker.css │ │ ├── colorpicker.html │ │ ├── colorpicker.js │ │ ├── colorpicker.xul │ │ ├── dropper.css │ │ ├── dropper.js │ │ ├── pickerweb.js │ │ └── pickerwindow.js │ ├── image │ ├── manifest.json │ ├── messages.json │ ├── modules │ ├── option │ │ ├── option.html │ │ └── option.js │ ├── popup │ │ ├── cog.png │ │ ├── color-wheel.png │ │ ├── copy.css │ │ ├── copy.html │ │ ├── copy.js │ │ ├── eyedropper.png │ │ ├── panel.css │ │ ├── panel.html │ │ └── panel.js │ ├── preferences │ └── strings ├── tb-cookie-exceptions │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── messenger.js │ ├── messenger.xul │ ├── strings │ └── suite_browser.xul ├── tb-copy │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── mail.xul │ └── strings ├── tb-create-profile │ ├── button.js │ ├── button.xul │ ├── description │ ├── image │ ├── legacy │ └── strings ├── tb-cut │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── mail.xul │ └── strings ├── tb-delete-cookies │ ├── browser.xul │ ├── description │ ├── image │ ├── preferences │ └── strings ├── tb-delete-session-cookies │ ├── browser.xul │ ├── description │ └── image ├── tb-developer-toolbar │ ├── description │ ├── image │ ├── legacy │ ├── portal.xul │ └── strings ├── tb-down-page │ ├── background.js │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── manifest.json │ └── strings ├── tb-external-application │ ├── button.js │ ├── button.xul │ ├── description │ ├── file_list │ ├── image │ ├── modules │ └── strings ├── tb-eyedropper │ ├── description │ ├── files │ │ ├── eyedropper-child.js │ │ ├── eyedropper.css │ │ ├── eyedropper.js │ │ ├── eyedropper.xul │ │ ├── eyedropper_common.css │ │ ├── eyedropper_crosshairs.css │ │ └── eyedropper_nocursor.css │ ├── image │ ├── portal.xul │ ├── preferences │ ├── strings │ ├── suite_browser.js │ └── suite_browser.xul ├── tb-first-last-tab │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ └── strings ├── tb-format-menu │ ├── compose.xul │ ├── description │ ├── image │ ├── legacy │ └── strings ├── tb-free-memory │ ├── bootstrap │ │ ├── global.js │ │ ├── shutdown.js │ │ └── startup.js │ ├── button.js │ ├── button.xul │ ├── description │ ├── image │ ├── key │ ├── legacy │ ├── modules │ ├── option.xul │ ├── preferences │ └── strings ├── tb-go-back │ ├── description │ ├── files │ │ └── go-back-urlbar-fix.css │ ├── image │ ├── option.xul │ ├── portal.xul │ ├── preferences │ └── strings ├── tb-go-forward │ ├── browser.js │ ├── description │ ├── image │ ├── option.xul │ ├── portal.xul │ ├── preferences │ └── strings ├── tb-go-menu │ ├── description │ ├── image │ ├── legacy │ ├── mail.xul │ ├── read.xul │ └── strings ├── tb-help-menu │ ├── button.xul │ ├── description │ ├── image │ ├── legacy │ └── strings ├── tb-hide-other-toolbars │ ├── button.js │ ├── button.xul │ ├── description │ ├── image │ ├── legacy │ └── strings ├── tb-history-sidebar │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── strings │ └── suite_browser.xul ├── tb-insert-menu │ ├── compose.xul │ ├── description │ ├── image │ └── strings ├── tb-inspector │ ├── description │ ├── image │ ├── legacy │ ├── portal.xul │ └── strings ├── tb-jsdebugger │ ├── description │ ├── image │ ├── legacy │ ├── portal.xul │ └── strings ├── tb-jsprofiler │ ├── description │ ├── image │ ├── legacy │ ├── portal.xul │ └── strings ├── tb-languages │ ├── button.xul │ ├── description │ ├── extended_button.xul │ ├── image │ ├── legacy │ └── strings ├── tb-message-menu │ ├── description │ ├── image │ ├── mail.xul │ ├── read.xul │ └── strings ├── tb-move-to-window │ ├── browser.xul │ ├── description │ ├── image │ ├── strings │ ├── suite_browser.js │ └── suite_browser.xul ├── tb-network-monitor │ ├── description │ ├── image │ ├── legacy │ ├── portal.xul │ └── strings ├── tb-new-window │ ├── browser.xul │ ├── description │ ├── image │ └── strings ├── tb-not-junk │ ├── description │ ├── image │ ├── messenger.xul │ └── strings ├── tb-open-download-folder │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ └── strings ├── tb-options-menu │ ├── compose.xul │ ├── description │ ├── image │ ├── legacy │ └── strings ├── tb-paste-as-quote │ ├── compose.xul │ ├── description │ ├── image │ └── strings ├── tb-paste │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── mail.xul │ └── strings ├── tb-pin-tab │ ├── background.js │ ├── browser.js │ ├── description │ ├── image │ ├── manifest.json │ ├── portal.xul │ └── strings ├── tb-pipeline-toggle │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ └── strings ├── tb-plugins │ ├── button.xul │ ├── description │ ├── extended_button.xul │ ├── image │ ├── legacy │ └── strings ├── tb-remote-content │ ├── description │ ├── image │ ├── messenger.js │ ├── messenger.xul │ └── strings ├── tb-responsive-ui │ ├── description │ ├── image │ ├── legacy │ ├── portal.xul │ └── strings ├── tb-restart-addons-disabled │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ └── strings ├── tb-rewrap-text │ ├── compose.xul │ ├── description │ ├── image │ └── strings ├── tb-scratch-pad │ ├── description │ ├── image │ ├── legacy │ ├── portal.xul │ └── strings ├── tb-send-referrer │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ └── strings ├── tb-services │ ├── description │ ├── extended_portal.xul │ ├── image │ ├── legacy │ ├── portal.xul │ └── strings ├── tb-sidebar │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── strings │ └── suite_browser.xul ├── tb-social-share │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ └── strings ├── tb-style-editor │ ├── description │ ├── image │ ├── legacy │ ├── portal.xul │ └── strings ├── tb-switch-profile │ ├── button.js │ ├── button.xul │ ├── description │ ├── image │ ├── legacy │ ├── strings │ └── suite_browser.xul ├── tb-tab-close-history │ ├── browser.xul │ ├── description │ ├── image │ ├── manifest.json │ ├── option │ │ ├── option.html │ │ └── option.js │ ├── popup │ │ ├── panel.css │ │ ├── panel.html │ │ └── panel.js │ ├── strings │ └── suite_browser.xul ├── tb-text-case-change │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ └── strings ├── tb-text-zoom-only │ ├── button.js │ ├── button.xul │ ├── description │ ├── image │ ├── legacy │ └── strings ├── tb-toggle-tools │ ├── description │ ├── image │ ├── legacy │ ├── portal.xul │ └── strings ├── tb-toolbar-display │ ├── browser.xul │ ├── button.js │ ├── description │ ├── image │ ├── legacy │ ├── messenger.xul │ └── strings ├── tb-up-page │ ├── background.js │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── manifest.json │ └── strings ├── tb-useragent-switch │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── file_list │ ├── image │ ├── legacy │ ├── modules │ └── strings ├── tb-web-console │ ├── description │ ├── image │ ├── legacy │ ├── portal.xul │ └── strings ├── tb-web-developer-menu │ ├── browser.js │ ├── description │ ├── image │ ├── legacy │ ├── portal.xul │ └── strings ├── tb-webide │ ├── description │ ├── image │ ├── legacy │ ├── portal.xul │ └── strings └── tb-window-menu │ ├── description │ ├── image │ ├── strings │ └── suite_browser.xul ├── release.json ├── release.sh ├── single.json ├── single_button_config.py ├── singles.sh ├── staging ├── copy-address │ ├── description │ ├── image │ ├── mail.js │ └── mail.xul ├── get-inbox │ ├── description │ ├── image │ ├── mail.xul │ └── messenger.js ├── home-page-change │ ├── browser.js │ ├── browser.xul │ ├── description │ ├── image │ ├── legacy │ ├── modules │ └── preferences ├── ignored-threads │ ├── description │ ├── image │ └── mail.xul ├── read-message │ ├── description │ ├── image │ ├── mail-header.xul │ └── mail.xul ├── toggle-starred │ ├── description │ ├── image │ ├── mail-header.xul │ ├── mail.xul │ └── read.xul ├── unread-threads │ ├── description │ ├── image │ ├── mail.js │ └── mail.xul ├── watched-with-unread-threads │ ├── description │ ├── image │ ├── mail.js │ └── mail.xul └── with-unread-threads │ ├── description │ ├── image │ ├── mail.js │ └── mail.xul ├── startbutton.sh ├── template.json ├── test.sh ├── toolbar_button.json ├── translate.json ├── translate.sh ├── web.json ├── webext ├── tb-close-tabs-right │ ├── background.js │ ├── manifest.json │ ├── messages.json │ └── option │ │ ├── option.html │ │ └── option.js ├── tb-search-bookmarks │ ├── manifest.json │ ├── messages.json │ ├── option │ │ ├── option.html │ │ └── option.js │ └── popup │ │ ├── magnifier.png │ │ ├── panel.css │ │ ├── panel.html │ │ └── panel.js └── tb-top-sites │ ├── manifest.json │ ├── messages.json │ ├── option │ ├── option.html │ └── option.js │ └── popup │ ├── panel.css │ ├── panel.html │ └── panel.js ├── webextension.json ├── webextensions.sh └── xpi └── amo_download.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/README.md -------------------------------------------------------------------------------- /alpha/tb-notepad/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/alpha/tb-notepad/browser.js -------------------------------------------------------------------------------- /alpha/tb-notepad/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/alpha/tb-notepad/browser.xul -------------------------------------------------------------------------------- /alpha/tb-notepad/description: -------------------------------------------------------------------------------- 1 | Opens a simple notepad in the sidebar 2 | -------------------------------------------------------------------------------- /alpha/tb-notepad/image: -------------------------------------------------------------------------------- 1 | note.png 2 | -------------------------------------------------------------------------------- /alpha/tiny-url/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/alpha/tiny-url/browser.js -------------------------------------------------------------------------------- /alpha/tiny-url/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/alpha/tiny-url/browser.xul -------------------------------------------------------------------------------- /alpha/tiny-url/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/alpha/tiny-url/description -------------------------------------------------------------------------------- /alpha/tiny-url/image: -------------------------------------------------------------------------------- 1 | link.png -------------------------------------------------------------------------------- /alpha/tiny-url/preferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/alpha/tiny-url/preferences -------------------------------------------------------------------------------- /configs/about-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/configs/about-config.json -------------------------------------------------------------------------------- /configs/addons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/configs/addons.json -------------------------------------------------------------------------------- /configs/cookie-buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/configs/cookie-buttons.json -------------------------------------------------------------------------------- /configs/find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/configs/find.json -------------------------------------------------------------------------------- /configs/history-buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/configs/history-buttons.json -------------------------------------------------------------------------------- /configs/page-navigation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/configs/page-navigation.json -------------------------------------------------------------------------------- /configs/print-buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/configs/print-buttons.json -------------------------------------------------------------------------------- /configs/profile-buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/configs/profile-buttons.json -------------------------------------------------------------------------------- /configs/restart-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/configs/restart-app.json -------------------------------------------------------------------------------- /configs/tab-buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/configs/tab-buttons.json -------------------------------------------------------------------------------- /configs/tb-about-about.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/configs/tb-about-about.json -------------------------------------------------------------------------------- /configs/tb-all-menus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/configs/tb-all-menus.json -------------------------------------------------------------------------------- /configs/tb-clear-cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/configs/tb-clear-cache.json -------------------------------------------------------------------------------- /configs/tb-color-picker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/configs/tb-color-picker.json -------------------------------------------------------------------------------- /configs/tb-free-memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/configs/tb-free-memory.json -------------------------------------------------------------------------------- /configs/zoom_buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/configs/zoom_buttons.json -------------------------------------------------------------------------------- /data/about-application/image: -------------------------------------------------------------------------------- 1 | information.png -------------------------------------------------------------------------------- /data/about-application/key: -------------------------------------------------------------------------------- 1 | A:accel,alt -------------------------------------------------------------------------------- /data/about-application/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/about-cache/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/about-cache/browser.xul -------------------------------------------------------------------------------- /data/about-cache/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/about-cache/description -------------------------------------------------------------------------------- /data/about-cache/image: -------------------------------------------------------------------------------- 1 | drive-web.png -------------------------------------------------------------------------------- /data/about-cache/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/about-cache/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false -------------------------------------------------------------------------------- /data/about-config/button.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/about-config/button.xul -------------------------------------------------------------------------------- /data/about-config/image: -------------------------------------------------------------------------------- 1 | wrench.png -------------------------------------------------------------------------------- /data/about-config/key: -------------------------------------------------------------------------------- 1 | K:accel,alt -------------------------------------------------------------------------------- /data/about-config/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/about-config/legacy -------------------------------------------------------------------------------- /data/about-config/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false -------------------------------------------------------------------------------- /data/about-disk-cache/image: -------------------------------------------------------------------------------- 1 | drive.png -------------------------------------------------------------------------------- /data/about-disk-cache/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/about-disk-cache/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false -------------------------------------------------------------------------------- /data/about-mem-cache/image: -------------------------------------------------------------------------------- 1 | memory.png -------------------------------------------------------------------------------- /data/about-mem-cache/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/about-mem-cache/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false -------------------------------------------------------------------------------- /data/about-plugins/image: -------------------------------------------------------------------------------- 1 | brick.png -------------------------------------------------------------------------------- /data/about-plugins/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/about-plugins/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false -------------------------------------------------------------------------------- /data/accountmanager/description: -------------------------------------------------------------------------------- 1 | Open Account Settings in Thunderbird. -------------------------------------------------------------------------------- /data/accountmanager/image: -------------------------------------------------------------------------------- 1 | user-edit.png -------------------------------------------------------------------------------- /data/accountwizard/image: -------------------------------------------------------------------------------- 1 | user-lightning.png -------------------------------------------------------------------------------- /data/accountwizard/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/accountwizard/mail.xul -------------------------------------------------------------------------------- /data/add-address/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/add-address/description -------------------------------------------------------------------------------- /data/add-address/image: -------------------------------------------------------------------------------- 1 | vcard-add.png -------------------------------------------------------------------------------- /data/add-address/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/add-address/mail.js -------------------------------------------------------------------------------- /data/add-address/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/add-address/mail.xul -------------------------------------------------------------------------------- /data/addons/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/addons/browser.xul -------------------------------------------------------------------------------- /data/addons/calendar.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/addons/calendar.xul -------------------------------------------------------------------------------- /data/addons/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/addons/description -------------------------------------------------------------------------------- /data/addons/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/addons/image -------------------------------------------------------------------------------- /data/addons/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/addons/messenger.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/addons/messenger.xul -------------------------------------------------------------------------------- /data/addons/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/addons/style.css -------------------------------------------------------------------------------- /data/all-threads/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/all-threads/description -------------------------------------------------------------------------------- /data/all-threads/image: -------------------------------------------------------------------------------- 1 | comments-thread.png -------------------------------------------------------------------------------- /data/all-threads/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/all-threads/mail.xul -------------------------------------------------------------------------------- /data/attachments-delete/description: -------------------------------------------------------------------------------- 1 | Delete Attachments from and email. -------------------------------------------------------------------------------- /data/attachments-delete/image: -------------------------------------------------------------------------------- 1 | attach-delete.png -------------------------------------------------------------------------------- /data/attachments-save/description: -------------------------------------------------------------------------------- 1 | Save Attachments from an message. -------------------------------------------------------------------------------- /data/attachments-save/image: -------------------------------------------------------------------------------- 1 | attach-save.png -------------------------------------------------------------------------------- /data/bookmark-manager/image: -------------------------------------------------------------------------------- 1 | bookmark.png -------------------------------------------------------------------------------- /data/bookmark-manager/preferences: -------------------------------------------------------------------------------- 1 | bookmark.manager.tab:false -------------------------------------------------------------------------------- /data/bookmark-nopop/image: -------------------------------------------------------------------------------- 1 | bookmark-go.png -------------------------------------------------------------------------------- /data/bookmark-tabs/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/bookmark-tabs/image -------------------------------------------------------------------------------- /data/bookmark/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/bookmark/browser.xul -------------------------------------------------------------------------------- /data/bookmark/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/bookmark/description -------------------------------------------------------------------------------- /data/bookmark/image: -------------------------------------------------------------------------------- 1 | bookmark-add.png 2 | -------------------------------------------------------------------------------- /data/bookmarks-menu-button1/image: -------------------------------------------------------------------------------- 1 | menu-bookmark.png -------------------------------------------------------------------------------- /data/bookmarks-menu-button2/image: -------------------------------------------------------------------------------- 1 | menu-bookmark.png -------------------------------------------------------------------------------- /data/bottom-page/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/bottom-page/browser.xul -------------------------------------------------------------------------------- /data/bottom-page/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/bottom-page/description -------------------------------------------------------------------------------- /data/bottom-page/image: -------------------------------------------------------------------------------- 1 | resultset-vertical-end.png -------------------------------------------------------------------------------- /data/bottom-page/key: -------------------------------------------------------------------------------- 1 | VK_PAGE_DOWN:alt -------------------------------------------------------------------------------- /data/change-text-direction/image: -------------------------------------------------------------------------------- 1 | text-direction-ltr.png -------------------------------------------------------------------------------- /data/clear-data/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/clear-data/browser.xul -------------------------------------------------------------------------------- /data/clear-data/description: -------------------------------------------------------------------------------- 1 | Open the clear private data window. -------------------------------------------------------------------------------- /data/clear-data/image: -------------------------------------------------------------------------------- 1 | brush.png -------------------------------------------------------------------------------- /data/clear-url/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/clear-url/browser.js -------------------------------------------------------------------------------- /data/clear-url/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/clear-url/browser.xul -------------------------------------------------------------------------------- /data/clear-url/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/clear-url/description -------------------------------------------------------------------------------- /data/clear-url/image: -------------------------------------------------------------------------------- 1 | link-error.png -------------------------------------------------------------------------------- /data/clear-url/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/clipboard-button/description: -------------------------------------------------------------------------------- 1 | Open a link you have copied to the clip board. -------------------------------------------------------------------------------- /data/clipboard-button/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/clipboard-button/image -------------------------------------------------------------------------------- /data/clipboard-button/preferences: -------------------------------------------------------------------------------- 1 | clipboard.open.mode:0 -------------------------------------------------------------------------------- /data/close-all-tabs/image: -------------------------------------------------------------------------------- 1 | tabs-delete.png -------------------------------------------------------------------------------- /data/close-all-tabs/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/close-all-tabs/strings -------------------------------------------------------------------------------- /data/close-other-tabs/image: -------------------------------------------------------------------------------- 1 | tabs-delete-others.png -------------------------------------------------------------------------------- /data/close-tab/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/close-tab/background.js -------------------------------------------------------------------------------- /data/close-tab/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/close-tab/browser.xul -------------------------------------------------------------------------------- /data/close-tab/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/close-tab/description -------------------------------------------------------------------------------- /data/close-tab/image: -------------------------------------------------------------------------------- 1 | tab-delete.png -------------------------------------------------------------------------------- /data/close-tab/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/close-tab/manifest.json -------------------------------------------------------------------------------- /data/compact/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/compact/description -------------------------------------------------------------------------------- /data/compact/image: -------------------------------------------------------------------------------- 1 | folder-brush.png -------------------------------------------------------------------------------- /data/compact/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/compact/mail.xul -------------------------------------------------------------------------------- /data/create-filter/image: -------------------------------------------------------------------------------- 1 | funnel-add.png -------------------------------------------------------------------------------- /data/create-filter/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/create-filter/mail.xul -------------------------------------------------------------------------------- /data/customize-toolbar/image: -------------------------------------------------------------------------------- 1 | toolbar-wrench.png -------------------------------------------------------------------------------- /data/customize-toolbar/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/delete-button/description: -------------------------------------------------------------------------------- 1 | Delete the currently selected item(s) or text. -------------------------------------------------------------------------------- /data/delete-button/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/delete-button/image -------------------------------------------------------------------------------- /data/delete-button/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/delete-event/description: -------------------------------------------------------------------------------- 1 | Delete an event. -------------------------------------------------------------------------------- /data/delete-event/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/delete-event/image -------------------------------------------------------------------------------- /data/delete-junk/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/delete-junk/description -------------------------------------------------------------------------------- /data/delete-junk/image: -------------------------------------------------------------------------------- 1 | flame-delete.png -------------------------------------------------------------------------------- /data/delete-junk/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/delete-junk/mail.xul -------------------------------------------------------------------------------- /data/delete-tasks/description: -------------------------------------------------------------------------------- 1 | Delete a task. -------------------------------------------------------------------------------- /data/delete-tasks/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/delete-tasks/image -------------------------------------------------------------------------------- /data/dictionary-list/image: -------------------------------------------------------------------------------- 1 | text-abc.png -------------------------------------------------------------------------------- /data/dictionary-list/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/ebay/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/ebay/browser.xul -------------------------------------------------------------------------------- /data/ebay/description: -------------------------------------------------------------------------------- 1 | Go to the eBay web site. -------------------------------------------------------------------------------- /data/ebay/image: -------------------------------------------------------------------------------- 1 | ebay.png -------------------------------------------------------------------------------- /data/ebay/preferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/ebay/preferences -------------------------------------------------------------------------------- /data/edit-as-new/description: -------------------------------------------------------------------------------- 1 | Edit an email. -------------------------------------------------------------------------------- /data/edit-as-new/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/edit-as-new/image -------------------------------------------------------------------------------- /data/edit-as-new/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/edit-as-new/mail.xul -------------------------------------------------------------------------------- /data/edit-draft/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/edit-draft/description -------------------------------------------------------------------------------- /data/edit-draft/image: -------------------------------------------------------------------------------- 1 | page-edit.png -------------------------------------------------------------------------------- /data/edit-draft/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/edit-draft/mail.xul -------------------------------------------------------------------------------- /data/empty-trash/description: -------------------------------------------------------------------------------- 1 | Empty the Trash Folder 2 | -------------------------------------------------------------------------------- /data/empty-trash/image: -------------------------------------------------------------------------------- 1 | bin.png -------------------------------------------------------------------------------- /data/empty-trash/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/empty-trash/mail.js -------------------------------------------------------------------------------- /data/empty-trash/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/empty-trash/mail.xul -------------------------------------------------------------------------------- /data/empty-trash/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/empty-trash/modules -------------------------------------------------------------------------------- /data/enlarge/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/enlarge/browser.xul -------------------------------------------------------------------------------- /data/enlarge/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/enlarge/description -------------------------------------------------------------------------------- /data/enlarge/image: -------------------------------------------------------------------------------- 1 | magnifier-zoom-in.png -------------------------------------------------------------------------------- /data/enlarge/mail-header.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/enlarge/mail-header.xul -------------------------------------------------------------------------------- /data/enlarge/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/enlarge/mail.xul -------------------------------------------------------------------------------- /data/enlarge/read.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/enlarge/read.xul -------------------------------------------------------------------------------- /data/exit/button.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/exit/button.xul -------------------------------------------------------------------------------- /data/exit/compose.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/exit/compose.xul -------------------------------------------------------------------------------- /data/exit/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/exit/description -------------------------------------------------------------------------------- /data/exit/image: -------------------------------------------------------------------------------- 1 | close-red.png 2 | -------------------------------------------------------------------------------- /data/exit/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/exit/messenger.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/exit/messenger.xul -------------------------------------------------------------------------------- /data/extensions/button.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/extensions/button.xul -------------------------------------------------------------------------------- /data/extensions/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/extensions/description -------------------------------------------------------------------------------- /data/extensions/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/extensions/image -------------------------------------------------------------------------------- /data/extensions/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/favorite-page/image: -------------------------------------------------------------------------------- 1 | house-link.png -------------------------------------------------------------------------------- /data/favorite-page/preferences: -------------------------------------------------------------------------------- 1 | url.favorite:"" 2 | always.new.tab:false -------------------------------------------------------------------------------- /data/find-again/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find-again/browser.xul -------------------------------------------------------------------------------- /data/find-again/compose.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find-again/compose.xul -------------------------------------------------------------------------------- /data/find-again/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find-again/description -------------------------------------------------------------------------------- /data/find-again/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find-again/image -------------------------------------------------------------------------------- /data/find-again/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find-again/mail.xul -------------------------------------------------------------------------------- /data/find-again/read.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find-again/read.xul -------------------------------------------------------------------------------- /data/find-prev/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find-prev/browser.xul -------------------------------------------------------------------------------- /data/find-prev/compose.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find-prev/compose.xul -------------------------------------------------------------------------------- /data/find-prev/description: -------------------------------------------------------------------------------- 1 | Find the previous bit of text that matches your search. -------------------------------------------------------------------------------- /data/find-prev/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find-prev/image -------------------------------------------------------------------------------- /data/find-prev/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find-prev/mail.xul -------------------------------------------------------------------------------- /data/find-prev/read.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find-prev/read.xul -------------------------------------------------------------------------------- /data/find/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find/browser.js -------------------------------------------------------------------------------- /data/find/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find/browser.xul -------------------------------------------------------------------------------- /data/find/browser_option.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find/browser_option.xul -------------------------------------------------------------------------------- /data/find/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find/description -------------------------------------------------------------------------------- /data/find/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find/image -------------------------------------------------------------------------------- /data/find/messenger.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/find/messenger.xul -------------------------------------------------------------------------------- /data/find/preferences: -------------------------------------------------------------------------------- 1 | find-bar.toggle:true -------------------------------------------------------------------------------- /data/firefox-extension/image: -------------------------------------------------------------------------------- 1 | firefox-addon.png -------------------------------------------------------------------------------- /data/firefox-theme/image: -------------------------------------------------------------------------------- 1 | firefox-theme.png -------------------------------------------------------------------------------- /data/forward-as-attachment/description: -------------------------------------------------------------------------------- 1 | Forward the current message as an attachment. -------------------------------------------------------------------------------- /data/forward-as-attachment/image: -------------------------------------------------------------------------------- 1 | email-forward-attachment.png -------------------------------------------------------------------------------- /data/forward-as-inline/image: -------------------------------------------------------------------------------- 1 | email-forward-inline.png -------------------------------------------------------------------------------- /data/full-screen/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/full-screen/browser.js -------------------------------------------------------------------------------- /data/full-screen/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/full-screen/browser.xul -------------------------------------------------------------------------------- /data/full-screen/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/full-screen/description -------------------------------------------------------------------------------- /data/full-screen/image: -------------------------------------------------------------------------------- 1 | application-expand.png -------------------------------------------------------------------------------- /data/full-screen/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/full-screen/preferences: -------------------------------------------------------------------------------- 1 | full.screen:false -------------------------------------------------------------------------------- /data/gmail/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/gmail/browser.xul -------------------------------------------------------------------------------- /data/gmail/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/gmail/description -------------------------------------------------------------------------------- /data/gmail/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/gmail/image -------------------------------------------------------------------------------- /data/gmail/preferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/gmail/preferences -------------------------------------------------------------------------------- /data/google/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/google/browser.xul -------------------------------------------------------------------------------- /data/google/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/google/description -------------------------------------------------------------------------------- /data/google/image: -------------------------------------------------------------------------------- 1 | google.png -------------------------------------------------------------------------------- /data/google/preferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/google/preferences -------------------------------------------------------------------------------- /data/help/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/help/browser.xul -------------------------------------------------------------------------------- /data/help/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/help/description -------------------------------------------------------------------------------- /data/help/image: -------------------------------------------------------------------------------- 1 | help.png -------------------------------------------------------------------------------- /data/help/key: -------------------------------------------------------------------------------- 1 | VK_F1: -------------------------------------------------------------------------------- /data/help/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/help/messenger.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/help/messenger.xul -------------------------------------------------------------------------------- /data/help/suite_browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/help/suite_browser.xul -------------------------------------------------------------------------------- /data/hide-images/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/hide-images/browser.js -------------------------------------------------------------------------------- /data/hide-images/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/hide-images/browser.xul -------------------------------------------------------------------------------- /data/hide-images/description: -------------------------------------------------------------------------------- 1 | Hide all image in the currently open web page. -------------------------------------------------------------------------------- /data/hide-images/image: -------------------------------------------------------------------------------- 1 | picture.png -------------------------------------------------------------------------------- /data/hotmail-button/description: -------------------------------------------------------------------------------- 1 | Open the Hotmail home page to view you mail. -------------------------------------------------------------------------------- /data/hotmail-button/image: -------------------------------------------------------------------------------- 1 | windows.png -------------------------------------------------------------------------------- /data/html-mode/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/html-mode/description -------------------------------------------------------------------------------- /data/html-mode/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/html-mode/image -------------------------------------------------------------------------------- /data/html-mode/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/html-mode/mail.xul -------------------------------------------------------------------------------- /data/html-mode/messenger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/html-mode/messenger.js -------------------------------------------------------------------------------- /data/html-mode/read.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/html-mode/read.xul -------------------------------------------------------------------------------- /data/image-toggle/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/image-toggle/browser.js -------------------------------------------------------------------------------- /data/image-toggle/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/image-toggle/image -------------------------------------------------------------------------------- /data/image-toggle/preferences: -------------------------------------------------------------------------------- 1 | do.reload:false -------------------------------------------------------------------------------- /data/import/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/import/button.js -------------------------------------------------------------------------------- /data/import/calendar.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/import/calendar.xul -------------------------------------------------------------------------------- /data/import/description: -------------------------------------------------------------------------------- 1 | Import settings and data from another application. -------------------------------------------------------------------------------- /data/import/image: -------------------------------------------------------------------------------- 1 | wrench-go.png -------------------------------------------------------------------------------- /data/import/messenger.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/import/messenger.xul -------------------------------------------------------------------------------- /data/import/portal.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/import/portal.xul -------------------------------------------------------------------------------- /data/inspecter/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/inspecter/browser.xul -------------------------------------------------------------------------------- /data/inspecter/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/inspecter/button.js -------------------------------------------------------------------------------- /data/inspecter/calendar.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/inspecter/calendar.xul -------------------------------------------------------------------------------- /data/inspecter/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/inspecter/description -------------------------------------------------------------------------------- /data/inspecter/image: -------------------------------------------------------------------------------- 1 | page-magnify.png -------------------------------------------------------------------------------- /data/inspecter/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/inspecter/mail.xul -------------------------------------------------------------------------------- /data/installaddons/image: -------------------------------------------------------------------------------- 1 | plugin-add.png -------------------------------------------------------------------------------- /data/installaddons/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/installaddons/preferences: -------------------------------------------------------------------------------- 1 | restart:false -------------------------------------------------------------------------------- /data/java-toggle/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/java-toggle/browser.js -------------------------------------------------------------------------------- /data/java-toggle/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/java-toggle/browser.xul -------------------------------------------------------------------------------- /data/java-toggle/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/java-toggle/description -------------------------------------------------------------------------------- /data/java-toggle/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/java-toggle/image -------------------------------------------------------------------------------- /data/java-toggle/preferences: -------------------------------------------------------------------------------- 1 | do.reload:false -------------------------------------------------------------------------------- /data/javaScriptConsole/image: -------------------------------------------------------------------------------- 1 | application-error.png -------------------------------------------------------------------------------- /data/javaScriptConsole/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/javaScriptConsole/preferences: -------------------------------------------------------------------------------- 1 | javascript.console.open:0 -------------------------------------------------------------------------------- /data/javascript-toggle/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/javascript-toggle/image -------------------------------------------------------------------------------- /data/javascript-toggle/preferences: -------------------------------------------------------------------------------- 1 | do.reload:false -------------------------------------------------------------------------------- /data/label-all-blank/image: -------------------------------------------------------------------------------- 1 | tabs-label.png -------------------------------------------------------------------------------- /data/label-all-blank/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/label-blank/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/label-blank/browser.js -------------------------------------------------------------------------------- /data/label-blank/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/label-blank/browser.xul -------------------------------------------------------------------------------- /data/label-blank/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/label-blank/description -------------------------------------------------------------------------------- /data/label-blank/image: -------------------------------------------------------------------------------- 1 | tab-label.png -------------------------------------------------------------------------------- /data/label-blank/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/link-open/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/link-open/browser.js -------------------------------------------------------------------------------- /data/link-open/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/link-open/browser.xul -------------------------------------------------------------------------------- /data/link-open/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/link-open/description -------------------------------------------------------------------------------- /data/link-open/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/link-open/image -------------------------------------------------------------------------------- /data/link-open/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/min-font-size/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/min-font-size/image -------------------------------------------------------------------------------- /data/min-font-size/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/min-font-size/preferences: -------------------------------------------------------------------------------- 1 | minimum.font.size:0 2 | -------------------------------------------------------------------------------- /data/minimize-window/image: -------------------------------------------------------------------------------- 1 | application-lightning.png -------------------------------------------------------------------------------- /data/msg-filter/description: -------------------------------------------------------------------------------- 1 | Add or edit you current message filters. -------------------------------------------------------------------------------- /data/msg-filter/image: -------------------------------------------------------------------------------- 1 | funnel-edit.png -------------------------------------------------------------------------------- /data/msg-filter/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/msg-filter/mail.xul -------------------------------------------------------------------------------- /data/msg-pane/description: -------------------------------------------------------------------------------- 1 | Show/Hide the Message Pane. -------------------------------------------------------------------------------- /data/msg-pane/image: -------------------------------------------------------------------------------- 1 | application-split.png -------------------------------------------------------------------------------- /data/msg-pane/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/msg-pane/mail.xul -------------------------------------------------------------------------------- /data/new-message/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/new-message/browser.xul -------------------------------------------------------------------------------- /data/new-message/description: -------------------------------------------------------------------------------- 1 | Open Thunderbird's compose window to write a new email. -------------------------------------------------------------------------------- /data/new-message/image: -------------------------------------------------------------------------------- 1 | email-go.png -------------------------------------------------------------------------------- /data/next-tab/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/next-tab/browser.xul -------------------------------------------------------------------------------- /data/next-tab/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/next-tab/description -------------------------------------------------------------------------------- /data/next-tab/image: -------------------------------------------------------------------------------- 1 | tab-next.png -------------------------------------------------------------------------------- /data/open-current-frame/description: -------------------------------------------------------------------------------- 1 | Show only the currently selected frame. -------------------------------------------------------------------------------- /data/page-source/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/page-source/browser.js -------------------------------------------------------------------------------- /data/page-source/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/page-source/browser.xul -------------------------------------------------------------------------------- /data/page-source/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/page-source/description -------------------------------------------------------------------------------- /data/page-source/image: -------------------------------------------------------------------------------- 1 | page-code.png -------------------------------------------------------------------------------- /data/page-source/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/page-source/mail.xul -------------------------------------------------------------------------------- /data/page-source/read.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/page-source/read.xul -------------------------------------------------------------------------------- /data/pageinfo/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/pageinfo/browser.xul -------------------------------------------------------------------------------- /data/pageinfo/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/pageinfo/description -------------------------------------------------------------------------------- /data/pageinfo/image: -------------------------------------------------------------------------------- 1 | page-information.png -------------------------------------------------------------------------------- /data/pagesetup/button.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/pagesetup/button.xul -------------------------------------------------------------------------------- /data/pagesetup/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/pagesetup/description -------------------------------------------------------------------------------- /data/pagesetup/image: -------------------------------------------------------------------------------- 1 | page-printer.png -------------------------------------------------------------------------------- /data/pagesetup/messenger.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/pagesetup/messenger.xul -------------------------------------------------------------------------------- /data/paypal/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/paypal/browser.xul -------------------------------------------------------------------------------- /data/paypal/description: -------------------------------------------------------------------------------- 1 | Go to the PayPal web site. -------------------------------------------------------------------------------- /data/paypal/image: -------------------------------------------------------------------------------- 1 | paypal.png -------------------------------------------------------------------------------- /data/paypal/preferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/paypal/preferences -------------------------------------------------------------------------------- /data/personal-bookmarks-menu-button/image: -------------------------------------------------------------------------------- 1 | toolbar-bookmark.png -------------------------------------------------------------------------------- /data/plainpaste/compose.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/plainpaste/compose.xul -------------------------------------------------------------------------------- /data/plainpaste/description: -------------------------------------------------------------------------------- 1 | Paste text into Thunderbird without any formatting. -------------------------------------------------------------------------------- /data/plainpaste/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/plainpaste/image -------------------------------------------------------------------------------- /data/preferences/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/preferences/browser.js -------------------------------------------------------------------------------- /data/preferences/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/preferences/browser.xul -------------------------------------------------------------------------------- /data/preferences/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/preferences/description -------------------------------------------------------------------------------- /data/preferences/image: -------------------------------------------------------------------------------- 1 | options-wrench.png -------------------------------------------------------------------------------- /data/preferences/key: -------------------------------------------------------------------------------- 1 | O:alt -------------------------------------------------------------------------------- /data/preferences/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/preferences/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/preferences/mail.js -------------------------------------------------------------------------------- /data/preferences/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/preferences/mail.xul -------------------------------------------------------------------------------- /data/previous-tab/image: -------------------------------------------------------------------------------- 1 | tab-previous.png -------------------------------------------------------------------------------- /data/print-preview/image: -------------------------------------------------------------------------------- 1 | printer-magnify.png -------------------------------------------------------------------------------- /data/print-preview/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/print-preview/mail.xul -------------------------------------------------------------------------------- /data/print-preview/read.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/print-preview/read.xul -------------------------------------------------------------------------------- /data/profile-folder/image: -------------------------------------------------------------------------------- 1 | folder-user.png -------------------------------------------------------------------------------- /data/profile-folder/key: -------------------------------------------------------------------------------- 1 | P:accel,alt -------------------------------------------------------------------------------- /data/profile-folder/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/profile-folder/preferences: -------------------------------------------------------------------------------- 1 | menupopup.hide.profile-folder:true -------------------------------------------------------------------------------- /data/profile-folder/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/profile-folder/strings -------------------------------------------------------------------------------- /data/purge/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/purge/description -------------------------------------------------------------------------------- /data/purge/image: -------------------------------------------------------------------------------- 1 | bin-brush.png -------------------------------------------------------------------------------- /data/purge/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/purge/mail.xul -------------------------------------------------------------------------------- /data/read-mail/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/read-mail/browser.js -------------------------------------------------------------------------------- /data/read-mail/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/read-mail/browser.xul -------------------------------------------------------------------------------- /data/read-mail/description: -------------------------------------------------------------------------------- 1 | Launch your default Email program from within Firefox. -------------------------------------------------------------------------------- /data/read-mail/image: -------------------------------------------------------------------------------- 1 | email.png -------------------------------------------------------------------------------- /data/read-mail/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/read-mail/option.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/read-mail/option.xul -------------------------------------------------------------------------------- /data/read-mail/preferences: -------------------------------------------------------------------------------- 1 | readmail.path:'' -------------------------------------------------------------------------------- /data/read-news/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/read-news/browser.js -------------------------------------------------------------------------------- /data/read-news/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/read-news/browser.xul -------------------------------------------------------------------------------- /data/read-news/description: -------------------------------------------------------------------------------- 1 | Launch your default News program from within Firefox. -------------------------------------------------------------------------------- /data/read-news/image: -------------------------------------------------------------------------------- 1 | newspaper.png -------------------------------------------------------------------------------- /data/read-news/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/read-news/option.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/read-news/option.xul -------------------------------------------------------------------------------- /data/read-news/preferences: -------------------------------------------------------------------------------- 1 | readnews.path:'' -------------------------------------------------------------------------------- /data/realNextMessage/image: -------------------------------------------------------------------------------- 1 | arrow-forward.png -------------------------------------------------------------------------------- /data/realNextMessage/preferences: -------------------------------------------------------------------------------- 1 | next:true -------------------------------------------------------------------------------- /data/realPreviousMessage/image: -------------------------------------------------------------------------------- 1 | arrow-back.png -------------------------------------------------------------------------------- /data/realPreviousMessage/preferences: -------------------------------------------------------------------------------- 1 | next:true -------------------------------------------------------------------------------- /data/redo/button.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/redo/button.xul -------------------------------------------------------------------------------- /data/redo/description: -------------------------------------------------------------------------------- 1 | Redo the late change. -------------------------------------------------------------------------------- /data/redo/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/redo/image -------------------------------------------------------------------------------- /data/redo/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/redo/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/redo/mail.xul -------------------------------------------------------------------------------- /data/reduce/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/reduce/browser.xul -------------------------------------------------------------------------------- /data/reduce/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/reduce/description -------------------------------------------------------------------------------- /data/reduce/image: -------------------------------------------------------------------------------- 1 | magnifier-zoom-out.png -------------------------------------------------------------------------------- /data/reduce/mail-header.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/reduce/mail-header.xul -------------------------------------------------------------------------------- /data/reduce/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/reduce/mail.xul -------------------------------------------------------------------------------- /data/reduce/read.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/reduce/read.xul -------------------------------------------------------------------------------- /data/reload-all-tabs/description: -------------------------------------------------------------------------------- 1 | Reload all open tabs. -------------------------------------------------------------------------------- /data/reload-all-tabs/image: -------------------------------------------------------------------------------- 1 | tabs-refresh.png -------------------------------------------------------------------------------- /data/reload-all-tabs/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/reload-all-tabs/strings -------------------------------------------------------------------------------- /data/reload-proxy/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/reload-proxy/button.js -------------------------------------------------------------------------------- /data/reload-proxy/button.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/reload-proxy/button.xul -------------------------------------------------------------------------------- /data/reload-proxy/description: -------------------------------------------------------------------------------- 1 | Reload the currently in use proxy. -------------------------------------------------------------------------------- /data/reload-proxy/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/reload-proxy/image -------------------------------------------------------------------------------- /data/reload-skip-cache/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/reload-skip-cache/image -------------------------------------------------------------------------------- /data/rename-tab/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/rename-tab/browser.js -------------------------------------------------------------------------------- /data/rename-tab/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/rename-tab/browser.xul -------------------------------------------------------------------------------- /data/rename-tab/description: -------------------------------------------------------------------------------- 1 | Rename the Currently Selected Tab. -------------------------------------------------------------------------------- /data/rename-tab/image: -------------------------------------------------------------------------------- 1 | tab-edit.png -------------------------------------------------------------------------------- /data/rename-tab/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/reply-sender/image: -------------------------------------------------------------------------------- 1 | email-user.png -------------------------------------------------------------------------------- /data/reply-sender/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/reply-sender/mail.xul -------------------------------------------------------------------------------- /data/reset/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/reset/browser.xul -------------------------------------------------------------------------------- /data/reset/description: -------------------------------------------------------------------------------- 1 | Reset Text Size to the default setting. -------------------------------------------------------------------------------- /data/reset/image: -------------------------------------------------------------------------------- 1 | magnifier.png -------------------------------------------------------------------------------- /data/reset/mail-header.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/reset/mail-header.xul -------------------------------------------------------------------------------- /data/reset/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/reset/mail.xul -------------------------------------------------------------------------------- /data/reset/read.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/reset/read.xul -------------------------------------------------------------------------------- /data/reset/suite_browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/reset/suite_browser.xul -------------------------------------------------------------------------------- /data/restart-app/button.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/restart-app/button.xul -------------------------------------------------------------------------------- /data/restart-app/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/restart-app/description -------------------------------------------------------------------------------- /data/restart-app/image: -------------------------------------------------------------------------------- 1 | arrow-recycle.png -------------------------------------------------------------------------------- /data/restart-app/key: -------------------------------------------------------------------------------- 1 | R:accel,alt -------------------------------------------------------------------------------- /data/restart-app/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/restart-app/option.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/restart-app/option.xul -------------------------------------------------------------------------------- /data/restart-app/preferences: -------------------------------------------------------------------------------- 1 | restart:false -------------------------------------------------------------------------------- /data/return-receipt/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/return-receipt/image -------------------------------------------------------------------------------- /data/save-frame/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/save-frame/browser.js -------------------------------------------------------------------------------- /data/save-frame/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/save-frame/browser.xul -------------------------------------------------------------------------------- /data/save-frame/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/save-frame/description -------------------------------------------------------------------------------- /data/save-frame/image: -------------------------------------------------------------------------------- 1 | layout-disk.png -------------------------------------------------------------------------------- /data/saveas/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/saveas/background.js -------------------------------------------------------------------------------- /data/saveas/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/saveas/browser.xul -------------------------------------------------------------------------------- /data/saveas/compose.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/saveas/compose.xul -------------------------------------------------------------------------------- /data/saveas/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/saveas/description -------------------------------------------------------------------------------- /data/saveas/image: -------------------------------------------------------------------------------- 1 | disk.png -------------------------------------------------------------------------------- /data/saveas/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/saveas/mail.xul -------------------------------------------------------------------------------- /data/saveas/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/saveas/manifest.json -------------------------------------------------------------------------------- /data/saveas/read.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/saveas/read.xul -------------------------------------------------------------------------------- /data/search-addresses/description: -------------------------------------------------------------------------------- 1 | Open the advanced address search window. -------------------------------------------------------------------------------- /data/search-addresses/image: -------------------------------------------------------------------------------- 1 | book-addresses-find.png -------------------------------------------------------------------------------- /data/search-messages/image: -------------------------------------------------------------------------------- 1 | email-find.png -------------------------------------------------------------------------------- /data/select-all/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/select-all/browser.xul -------------------------------------------------------------------------------- /data/select-all/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/select-all/description -------------------------------------------------------------------------------- /data/select-all/image: -------------------------------------------------------------------------------- 1 | page-white-select-all.png -------------------------------------------------------------------------------- /data/select-all/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/send-link/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/send-link/browser.xul -------------------------------------------------------------------------------- /data/send-link/description: -------------------------------------------------------------------------------- 1 | Send Page Link in an Email. -------------------------------------------------------------------------------- /data/send-link/image: -------------------------------------------------------------------------------- 1 | link-go.png -------------------------------------------------------------------------------- /data/send-link/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/send-receive/image: -------------------------------------------------------------------------------- 1 | email-left-right.png -------------------------------------------------------------------------------- /data/send-receive/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/send-receive/mail.xul -------------------------------------------------------------------------------- /data/send-with-no-save/image: -------------------------------------------------------------------------------- 1 | email-go-yellow.png -------------------------------------------------------------------------------- /data/shift-delete/image: -------------------------------------------------------------------------------- 1 | bin-alert.png -------------------------------------------------------------------------------- /data/shift-delete/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/shift-delete/mail.xul -------------------------------------------------------------------------------- /data/shift-delete/read.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/shift-delete/read.xul -------------------------------------------------------------------------------- /data/show-frame/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/show-frame/browser.xul -------------------------------------------------------------------------------- /data/show-frame/description: -------------------------------------------------------------------------------- 1 | Show only the currently selected frame. -------------------------------------------------------------------------------- /data/show-frame/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/show-frame/image -------------------------------------------------------------------------------- /data/snap-back/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/snap-back/background.js -------------------------------------------------------------------------------- /data/snap-back/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/snap-back/browser.xul -------------------------------------------------------------------------------- /data/snap-back/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/snap-back/description -------------------------------------------------------------------------------- /data/snap-back/image: -------------------------------------------------------------------------------- 1 | arrow-back-double.png -------------------------------------------------------------------------------- /data/snap-back/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/snap-back/manifest.json -------------------------------------------------------------------------------- /data/statusbar-toggle/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/statusbar-toggle/image -------------------------------------------------------------------------------- /data/statusbar-toggle/key: -------------------------------------------------------------------------------- 1 | /:accel -------------------------------------------------------------------------------- /data/statusbar-toggle/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/statusbar-toggle/modules: -------------------------------------------------------------------------------- 1 | resource://modules/CustomizableUI.jsm -------------------------------------------------------------------------------- /data/statusbar-toggle/preferences: -------------------------------------------------------------------------------- 1 | statusbar-toggle.collapsed:true -------------------------------------------------------------------------------- /data/stop-all/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-all/background.js -------------------------------------------------------------------------------- /data/stop-all/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-all/browser.js -------------------------------------------------------------------------------- /data/stop-all/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-all/browser.xul -------------------------------------------------------------------------------- /data/stop-all/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-all/description -------------------------------------------------------------------------------- /data/stop-all/image: -------------------------------------------------------------------------------- 1 | tabs-stop.png -------------------------------------------------------------------------------- /data/stop-all/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-all/manifest.json -------------------------------------------------------------------------------- /data/stop-animation/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-animation/image -------------------------------------------------------------------------------- /data/stop-animation/preferences: -------------------------------------------------------------------------------- 1 | marquee:true -------------------------------------------------------------------------------- /data/stop-cookies/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-cookies/browser.js -------------------------------------------------------------------------------- /data/stop-cookies/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-cookies/image -------------------------------------------------------------------------------- /data/stop-cookies/preferences: -------------------------------------------------------------------------------- 1 | delete.cookies.check:true -------------------------------------------------------------------------------- /data/stop-dynamic-content/file_list: -------------------------------------------------------------------------------- 1 | block.xml 2 | -------------------------------------------------------------------------------- /data/stop-dynamic-content/preferences: -------------------------------------------------------------------------------- 1 | enable_all:true -------------------------------------------------------------------------------- /data/stop-flash/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-flash/browser.js -------------------------------------------------------------------------------- /data/stop-flash/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-flash/browser.xul -------------------------------------------------------------------------------- /data/stop-flash/description: -------------------------------------------------------------------------------- 1 | Stop Flash from annoying you. -------------------------------------------------------------------------------- /data/stop-flash/file_list: -------------------------------------------------------------------------------- 1 | block.xml 2 | -------------------------------------------------------------------------------- /data/stop-flash/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-flash/image -------------------------------------------------------------------------------- /data/stop-flash/preferences: -------------------------------------------------------------------------------- 1 | flash:true -------------------------------------------------------------------------------- /data/stop-flash/res_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-flash/res_list -------------------------------------------------------------------------------- /data/stop-iframe/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-iframe/browser.js -------------------------------------------------------------------------------- /data/stop-iframe/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-iframe/browser.xul -------------------------------------------------------------------------------- /data/stop-iframe/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-iframe/description -------------------------------------------------------------------------------- /data/stop-iframe/file_list: -------------------------------------------------------------------------------- 1 | block.xml 2 | -------------------------------------------------------------------------------- /data/stop-iframe/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-iframe/image -------------------------------------------------------------------------------- /data/stop-iframe/preferences: -------------------------------------------------------------------------------- 1 | iframe:true -------------------------------------------------------------------------------- /data/stop-iframe/res_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-iframe/res_list -------------------------------------------------------------------------------- /data/stop-movies/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-movies/browser.js -------------------------------------------------------------------------------- /data/stop-movies/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-movies/browser.xul -------------------------------------------------------------------------------- /data/stop-movies/description: -------------------------------------------------------------------------------- 1 | Stop movies from loading. -------------------------------------------------------------------------------- /data/stop-movies/file_list: -------------------------------------------------------------------------------- 1 | block.xml 2 | -------------------------------------------------------------------------------- /data/stop-movies/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-movies/image -------------------------------------------------------------------------------- /data/stop-movies/preferences: -------------------------------------------------------------------------------- 1 | movies:true -------------------------------------------------------------------------------- /data/stop-movies/res_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/stop-movies/res_list -------------------------------------------------------------------------------- /data/tab-list/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tab-list/browser.js -------------------------------------------------------------------------------- /data/tab-list/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tab-list/browser.xul -------------------------------------------------------------------------------- /data/tab-list/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tab-list/description -------------------------------------------------------------------------------- /data/tab-list/image: -------------------------------------------------------------------------------- 1 | tabs.png -------------------------------------------------------------------------------- /data/tab-list/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tab-list/manifest.json -------------------------------------------------------------------------------- /data/tab-list/popup/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tab-list/popup/panel.js -------------------------------------------------------------------------------- /data/tab-list/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tab-list/todo -------------------------------------------------------------------------------- /data/tasks-in-view/image: -------------------------------------------------------------------------------- 1 | task-magnify.png -------------------------------------------------------------------------------- /data/tasks-toggle/image: -------------------------------------------------------------------------------- 1 | task.png -------------------------------------------------------------------------------- /data/tb-about-about/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-about-about/image -------------------------------------------------------------------------------- /data/tb-about-about/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-about-about/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false -------------------------------------------------------------------------------- /data/tb-about-about/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-about-about/strings -------------------------------------------------------------------------------- /data/tb-about-blank/image: -------------------------------------------------------------------------------- 1 | page-white.png -------------------------------------------------------------------------------- /data/tb-about-blank/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false -------------------------------------------------------------------------------- /data/tb-about-blank/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-about-blank/strings -------------------------------------------------------------------------------- /data/tb-all-menus/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-all-menus/button.js -------------------------------------------------------------------------------- /data/tb-all-menus/button.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-all-menus/button.xul -------------------------------------------------------------------------------- /data/tb-all-menus/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-all-menus/image -------------------------------------------------------------------------------- /data/tb-all-menus/key: -------------------------------------------------------------------------------- 1 | M:alt -------------------------------------------------------------------------------- /data/tb-all-menus/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-all-menus/option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-all-menus/option.js -------------------------------------------------------------------------------- /data/tb-all-menus/option.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-all-menus/option.xul -------------------------------------------------------------------------------- /data/tb-all-menus/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-all-menus/strings -------------------------------------------------------------------------------- /data/tb-all-menus/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-all-menus/style.css -------------------------------------------------------------------------------- /data/tb-check-for-update/description: -------------------------------------------------------------------------------- 1 | Check for updates to the currently open application. -------------------------------------------------------------------------------- /data/tb-check-for-update/image: -------------------------------------------------------------------------------- 1 | package-refresh.png -------------------------------------------------------------------------------- /data/tb-check-for-update/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-clear-cache/image: -------------------------------------------------------------------------------- 1 | backspace.png -------------------------------------------------------------------------------- /data/tb-clear-cache/key: -------------------------------------------------------------------------------- 1 | VKBACKSPACE:accel,shift -------------------------------------------------------------------------------- /data/tb-clear-cache/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-clear-cache/strings -------------------------------------------------------------------------------- /data/tb-clear-search/description: -------------------------------------------------------------------------------- 1 | Clear and focus on the search bar. -------------------------------------------------------------------------------- /data/tb-clear-search/image: -------------------------------------------------------------------------------- 1 | textfield-magnify.png -------------------------------------------------------------------------------- /data/tb-clear-search/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-clear-url/description: -------------------------------------------------------------------------------- 1 | Clear and focus on the urlbar. -------------------------------------------------------------------------------- /data/tb-clear-url/image: -------------------------------------------------------------------------------- 1 | textfield-rename.png -------------------------------------------------------------------------------- /data/tb-clear-url/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-clone-tab/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-clone-tab/browser.js -------------------------------------------------------------------------------- /data/tb-clone-tab/description: -------------------------------------------------------------------------------- 1 | Makes a copy of the current tab 2 | -------------------------------------------------------------------------------- /data/tb-clone-tab/image: -------------------------------------------------------------------------------- 1 | tab-go.png 2 | -------------------------------------------------------------------------------- /data/tb-cookie-manager/image: -------------------------------------------------------------------------------- 1 | cookie.png 2 | -------------------------------------------------------------------------------- /data/tb-cookie-manager/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-download-sync/image: -------------------------------------------------------------------------------- 1 | inbox-down.png -------------------------------------------------------------------------------- /data/tb-edit-menu/button.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-edit-menu/button.xul -------------------------------------------------------------------------------- /data/tb-edit-menu/description: -------------------------------------------------------------------------------- 1 | Show the edit menu. -------------------------------------------------------------------------------- /data/tb-edit-menu/image: -------------------------------------------------------------------------------- 1 | menu-edit.png -------------------------------------------------------------------------------- /data/tb-edit-menu/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-file-menu/button.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-file-menu/button.xul -------------------------------------------------------------------------------- /data/tb-file-menu/description: -------------------------------------------------------------------------------- 1 | Show the file menu. -------------------------------------------------------------------------------- /data/tb-file-menu/image: -------------------------------------------------------------------------------- 1 | menu-page.png -------------------------------------------------------------------------------- /data/tb-file-menu/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-history-menu/description: -------------------------------------------------------------------------------- 1 | Show the history menu. -------------------------------------------------------------------------------- /data/tb-history-menu/image: -------------------------------------------------------------------------------- 1 | menu-time.png -------------------------------------------------------------------------------- /data/tb-history-menu/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-history-menu/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-history-menu/strings -------------------------------------------------------------------------------- /data/tb-new-event/description: -------------------------------------------------------------------------------- 1 | Add a new event into the calendar. -------------------------------------------------------------------------------- /data/tb-new-event/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-new-event/image -------------------------------------------------------------------------------- /data/tb-new-tab/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-new-tab/browser.xul -------------------------------------------------------------------------------- /data/tb-new-tab/description: -------------------------------------------------------------------------------- 1 | Create a new empty tab -------------------------------------------------------------------------------- /data/tb-new-tab/image: -------------------------------------------------------------------------------- 1 | tab-add.png -------------------------------------------------------------------------------- /data/tb-new-tab/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-new-tab/strings -------------------------------------------------------------------------------- /data/tb-new-task/description: -------------------------------------------------------------------------------- 1 | Add a new task to the calendar. -------------------------------------------------------------------------------- /data/tb-new-task/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-new-task/image -------------------------------------------------------------------------------- /data/tb-open-in-conversation/description: -------------------------------------------------------------------------------- 1 | Open the current message in a conversation tab -------------------------------------------------------------------------------- /data/tb-open-in-conversation/image: -------------------------------------------------------------------------------- 1 | email-comment.png -------------------------------------------------------------------------------- /data/tb-open/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-open/browser.xul -------------------------------------------------------------------------------- /data/tb-open/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-open/description -------------------------------------------------------------------------------- /data/tb-open/image: -------------------------------------------------------------------------------- 1 | folder-open.png -------------------------------------------------------------------------------- /data/tb-open/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-open/mail.xul -------------------------------------------------------------------------------- /data/tb-page-info-media/image: -------------------------------------------------------------------------------- 1 | page-picture.png -------------------------------------------------------------------------------- /data/tb-page-reload/description: -------------------------------------------------------------------------------- 1 | Reload the current page/tab. -------------------------------------------------------------------------------- /data/tb-page-reload/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-page-reload/image -------------------------------------------------------------------------------- /data/tb-page-reload/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-page-reload/strings -------------------------------------------------------------------------------- /data/tb-page-stop/description: -------------------------------------------------------------------------------- 1 | Stops the current page from continuing to load. -------------------------------------------------------------------------------- /data/tb-page-stop/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-page-stop/image -------------------------------------------------------------------------------- /data/tb-page-stop/portal.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-page-stop/portal.xul -------------------------------------------------------------------------------- /data/tb-page-stop/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-page-stop/strings -------------------------------------------------------------------------------- /data/tb-print-page/description: -------------------------------------------------------------------------------- 1 | Print the current page. 2 | -------------------------------------------------------------------------------- /data/tb-print-page/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-print-page/image -------------------------------------------------------------------------------- /data/tb-print-page/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-print-page/strings -------------------------------------------------------------------------------- /data/tb-saved-passwords/image: -------------------------------------------------------------------------------- 1 | key.png 2 | -------------------------------------------------------------------------------- /data/tb-saved-passwords/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-search-go-button/image: -------------------------------------------------------------------------------- 1 | world-find.png -------------------------------------------------------------------------------- /data/tb-search-go-button/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-search-minus/image: -------------------------------------------------------------------------------- 1 | textfield-smaller.png 2 | -------------------------------------------------------------------------------- /data/tb-search-minus/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-search-minus/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-search-minus/strings -------------------------------------------------------------------------------- /data/tb-search-plus/image: -------------------------------------------------------------------------------- 1 | textfield-bigger.png 2 | -------------------------------------------------------------------------------- /data/tb-search-plus/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-search-plus/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-search-plus/strings -------------------------------------------------------------------------------- /data/tb-search-resize/image: -------------------------------------------------------------------------------- 1 | textfield-resize.png 2 | -------------------------------------------------------------------------------- /data/tb-search-resize/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-show-all-history/image: -------------------------------------------------------------------------------- 1 | time.png -------------------------------------------------------------------------------- /data/tb-show-all-history/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-toggle-headers/description: -------------------------------------------------------------------------------- 1 | Sets what headers are displayed for an open message. -------------------------------------------------------------------------------- /data/tb-toggle-headers/image: -------------------------------------------------------------------------------- 1 | layout-header.png -------------------------------------------------------------------------------- /data/tb-toggle-menu-bar/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-toggle-popup-blocker/key: -------------------------------------------------------------------------------- 1 | Q:accel,shift -------------------------------------------------------------------------------- /data/tb-toggle-popup-blocker/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-tools-menu/description: -------------------------------------------------------------------------------- 1 | Show the tools menu. -------------------------------------------------------------------------------- /data/tb-tools-menu/image: -------------------------------------------------------------------------------- 1 | menu-wrench.png -------------------------------------------------------------------------------- /data/tb-tools-menu/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-twitter-button/image: -------------------------------------------------------------------------------- 1 | twitter.png -------------------------------------------------------------------------------- /data/tb-url-go-button/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-url-go-button/image -------------------------------------------------------------------------------- /data/tb-url-go-button/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-view-menu/button.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/tb-view-menu/button.xul -------------------------------------------------------------------------------- /data/tb-view-menu/description: -------------------------------------------------------------------------------- 1 | Show the view menu. -------------------------------------------------------------------------------- /data/tb-view-menu/image: -------------------------------------------------------------------------------- 1 | menu-magnify.png -------------------------------------------------------------------------------- /data/tb-view-menu/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/themes/button.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/themes/button.xul -------------------------------------------------------------------------------- /data/themes/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/themes/description -------------------------------------------------------------------------------- /data/themes/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/themes/image -------------------------------------------------------------------------------- /data/themes/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/thunderbird-extension/image: -------------------------------------------------------------------------------- 1 | thunderbird-addon.png -------------------------------------------------------------------------------- /data/thunderbird-theme/image: -------------------------------------------------------------------------------- 1 | thunderbird-theme.png -------------------------------------------------------------------------------- /data/toggle-bookmark-toolbar/description: -------------------------------------------------------------------------------- 1 | Show/Hide to Bookmark Toolbar. -------------------------------------------------------------------------------- /data/toggle-bookmark-toolbar/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/toggle-proxy/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/toggle-proxy/button.js -------------------------------------------------------------------------------- /data/toggle-proxy/button.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/toggle-proxy/button.xul -------------------------------------------------------------------------------- /data/toggle-proxy/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/toggle-proxy/image -------------------------------------------------------------------------------- /data/toggle-proxy/option.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/toggle-proxy/option.xul -------------------------------------------------------------------------------- /data/toggle-proxy/preferences: -------------------------------------------------------------------------------- 1 | toggle.proxy:1 2 | -------------------------------------------------------------------------------- /data/toggle-read/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/toggle-read/description -------------------------------------------------------------------------------- /data/toggle-read/image: -------------------------------------------------------------------------------- 1 | email-valid.png -------------------------------------------------------------------------------- /data/toggle-read/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/toggle-read/mail.xul -------------------------------------------------------------------------------- /data/toggle-read/read.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/toggle-read/read.xul -------------------------------------------------------------------------------- /data/toggle-styles/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/toggle-styles/image -------------------------------------------------------------------------------- /data/toggle-toolbar/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/toggle-toolbar/image -------------------------------------------------------------------------------- /data/toggle-toolbar/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/toggle-toolbar/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/toggle-toolbar/mail.js -------------------------------------------------------------------------------- /data/toggle-toolbar/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/toggle-toolbar/mail.xul -------------------------------------------------------------------------------- /data/toolbar-menu/image: -------------------------------------------------------------------------------- 1 | toolbar-edit.png -------------------------------------------------------------------------------- /data/toolbar-menu/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/top-page/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/top-page/background.js -------------------------------------------------------------------------------- /data/top-page/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/top-page/browser.xul -------------------------------------------------------------------------------- /data/top-page/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/top-page/description -------------------------------------------------------------------------------- /data/top-page/image: -------------------------------------------------------------------------------- 1 | resultset-vertical-start.png -------------------------------------------------------------------------------- /data/top-page/key: -------------------------------------------------------------------------------- 1 | VK_PAGE_UP:alt -------------------------------------------------------------------------------- /data/top-page/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/top-page/manifest.json -------------------------------------------------------------------------------- /data/translate/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/translate/browser.js -------------------------------------------------------------------------------- /data/translate/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/translate/browser.xul -------------------------------------------------------------------------------- /data/translate/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/translate/description -------------------------------------------------------------------------------- /data/translate/image: -------------------------------------------------------------------------------- 1 | pencil.png -------------------------------------------------------------------------------- /data/translate/option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/translate/option.js -------------------------------------------------------------------------------- /data/translate/option.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/translate/option.xul -------------------------------------------------------------------------------- /data/translate/preferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/translate/preferences -------------------------------------------------------------------------------- /data/translate/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/translate/strings -------------------------------------------------------------------------------- /data/undo-close-tab/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/undo-close-tab/image -------------------------------------------------------------------------------- /data/undo-close-tab/preferences: -------------------------------------------------------------------------------- 1 | menupopup.hide.undo-close-tab:true -------------------------------------------------------------------------------- /data/undo-close-tab/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/undo-close-tab/strings -------------------------------------------------------------------------------- /data/undo/button.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/undo/button.xul -------------------------------------------------------------------------------- /data/undo/description: -------------------------------------------------------------------------------- 1 | Undo last change/action. -------------------------------------------------------------------------------- /data/undo/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/undo/image -------------------------------------------------------------------------------- /data/undo/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/undo/messenger.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/undo/messenger.xul -------------------------------------------------------------------------------- /data/up-directory/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/up-directory/browser.js -------------------------------------------------------------------------------- /data/up-directory/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/up-directory/image -------------------------------------------------------------------------------- /data/use-document-colors/key: -------------------------------------------------------------------------------- 1 | C:accel,alt -------------------------------------------------------------------------------- /data/use-document-fonts/key: -------------------------------------------------------------------------------- 1 | F:accel,alt -------------------------------------------------------------------------------- /data/websearch/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/websearch/browser.xul -------------------------------------------------------------------------------- /data/websearch/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/websearch/description -------------------------------------------------------------------------------- /data/websearch/image: -------------------------------------------------------------------------------- 1 | world-explore.png -------------------------------------------------------------------------------- /data/websearch/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/wikipedia/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/wikipedia/browser.xul -------------------------------------------------------------------------------- /data/wikipedia/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/wikipedia/description -------------------------------------------------------------------------------- /data/wikipedia/image: -------------------------------------------------------------------------------- 1 | book-wiki.png -------------------------------------------------------------------------------- /data/wikipedia/preferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/wikipedia/preferences -------------------------------------------------------------------------------- /data/workoffline/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/workoffline/browser.xul -------------------------------------------------------------------------------- /data/workoffline/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/workoffline/description -------------------------------------------------------------------------------- /data/workoffline/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/workoffline/image -------------------------------------------------------------------------------- /data/workoffline/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/workoffline/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/workoffline/mail.xul -------------------------------------------------------------------------------- /data/workoffline/read.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/data/workoffline/read.xul -------------------------------------------------------------------------------- /data/yahoo-button/image: -------------------------------------------------------------------------------- 1 | yahoo.png -------------------------------------------------------------------------------- /default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/default.json -------------------------------------------------------------------------------- /depreciated/about-firefox/hidden: -------------------------------------------------------------------------------- 1 | about-application -------------------------------------------------------------------------------- /depreciated/about-firefox/image: -------------------------------------------------------------------------------- 1 | information.png -------------------------------------------------------------------------------- /depreciated/open/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/depreciated/open/browser.xul -------------------------------------------------------------------------------- /depreciated/open/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/depreciated/open/description -------------------------------------------------------------------------------- /depreciated/open/hidden: -------------------------------------------------------------------------------- 1 | tb-open -------------------------------------------------------------------------------- /depreciated/open/image: -------------------------------------------------------------------------------- 1 | folder-open.png -------------------------------------------------------------------------------- /depreciated/open/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/depreciated/open/mail.xul -------------------------------------------------------------------------------- /depreciated/open/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/depreciated/open/strings -------------------------------------------------------------------------------- /depreciated/tb-page-go/hidden: -------------------------------------------------------------------------------- 1 | tb-url-go-button -------------------------------------------------------------------------------- /depreciated/tb-page-go/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/depreciated/tb-page-go/image -------------------------------------------------------------------------------- /depreciated/tb-reload-all-tabs/description: -------------------------------------------------------------------------------- 1 | Reloads all the open tabs -------------------------------------------------------------------------------- /depreciated/tb-reload-all-tabs/hidden: -------------------------------------------------------------------------------- 1 | reload-all-tabs -------------------------------------------------------------------------------- /depreciated/tb-reload-all-tabs/image: -------------------------------------------------------------------------------- 1 | tabs-refresh.png -------------------------------------------------------------------------------- /files/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/LICENSE -------------------------------------------------------------------------------- /files/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/block.png -------------------------------------------------------------------------------- /files/block.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/block.xml -------------------------------------------------------------------------------- /files/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/icon.png -------------------------------------------------------------------------------- /files/icons/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/icons/browser.png -------------------------------------------------------------------------------- /files/icons/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/icons/calendar.png -------------------------------------------------------------------------------- /files/icons/messenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/icons/messenger.png -------------------------------------------------------------------------------- /files/icons/suite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/icons/suite.png -------------------------------------------------------------------------------- /files/install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/install.rdf -------------------------------------------------------------------------------- /files/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/interfaces -------------------------------------------------------------------------------- /files/lib/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/lib/addons.js -------------------------------------------------------------------------------- /files/lib/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/lib/cookies.js -------------------------------------------------------------------------------- /files/lib/extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/lib/extensions.js -------------------------------------------------------------------------------- /files/lib/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/lib/functions.js -------------------------------------------------------------------------------- /files/lib/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/lib/history.js -------------------------------------------------------------------------------- /files/lib/open_page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/lib/open_page.js -------------------------------------------------------------------------------- /files/lib/pref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/lib/pref.js -------------------------------------------------------------------------------- /files/lib/restart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/lib/restart.js -------------------------------------------------------------------------------- /files/lib/string_database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/lib/string_database.js -------------------------------------------------------------------------------- /files/lib/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/lib/toolbar.js -------------------------------------------------------------------------------- /files/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/play.png -------------------------------------------------------------------------------- /files/string-preference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/string-preference.js -------------------------------------------------------------------------------- /files/string-preference.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/string-preference.xul -------------------------------------------------------------------------------- /files/toolbar-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/toolbar-back.png -------------------------------------------------------------------------------- /files/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/files/top.png -------------------------------------------------------------------------------- /find_app_string.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/find_app_string.sh -------------------------------------------------------------------------------- /icons/16/codefisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/icons/16/codefisher.png -------------------------------------------------------------------------------- /icons/24/codefisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/icons/24/codefisher.png -------------------------------------------------------------------------------- /icons/32/codefisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/icons/32/codefisher.png -------------------------------------------------------------------------------- /icons/48/codefisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/icons/48/codefisher.png -------------------------------------------------------------------------------- /locale/ar/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ar/button.dtd -------------------------------------------------------------------------------- /locale/ar/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ar/meta.dtd -------------------------------------------------------------------------------- /locale/ar/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ar/options.dtd -------------------------------------------------------------------------------- /locale/ar/pre_button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ar/pre_button.dtd -------------------------------------------------------------------------------- /locale/ar/pre_button.properties: -------------------------------------------------------------------------------- 1 | empty=Empty 2 | tb-useragent-switch.label=عميل المستخدم -------------------------------------------------------------------------------- /locale/ar/pre_options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ar/pre_options.dtd -------------------------------------------------------------------------------- /locale/cs-CZ/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/cs-CZ/button.dtd -------------------------------------------------------------------------------- /locale/cs-CZ/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/cs-CZ/meta.dtd -------------------------------------------------------------------------------- /locale/cs-CZ/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/cs-CZ/options.dtd -------------------------------------------------------------------------------- /locale/de/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/de/button.dtd -------------------------------------------------------------------------------- /locale/de/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/de/meta.dtd -------------------------------------------------------------------------------- /locale/de/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/de/options.dtd -------------------------------------------------------------------------------- /locale/de/pre_button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/de/pre_button.dtd -------------------------------------------------------------------------------- /locale/de/pre_files.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/de/pre_files.dtd -------------------------------------------------------------------------------- /locale/de/pre_options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/de/pre_options.dtd -------------------------------------------------------------------------------- /locale/el/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/el/button.dtd -------------------------------------------------------------------------------- /locale/el/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/el/meta.dtd -------------------------------------------------------------------------------- /locale/el/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/el/options.dtd -------------------------------------------------------------------------------- /locale/el/pre_button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/el/pre_button.dtd -------------------------------------------------------------------------------- /locale/el/pre_files.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/el/pre_files.dtd -------------------------------------------------------------------------------- /locale/el/pre_options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/el/pre_options.dtd -------------------------------------------------------------------------------- /locale/en-US/files.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/en-US/files.dtd -------------------------------------------------------------------------------- /locale/en-US/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/en-US/meta.dtd -------------------------------------------------------------------------------- /locale/en-US/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/en-US/options.dtd -------------------------------------------------------------------------------- /locale/es-AR/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/es-AR/button.dtd -------------------------------------------------------------------------------- /locale/es-AR/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/es-AR/meta.dtd -------------------------------------------------------------------------------- /locale/es-AR/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/es-AR/options.dtd -------------------------------------------------------------------------------- /locale/es-ES/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/es-ES/button.dtd -------------------------------------------------------------------------------- /locale/es-ES/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/es-ES/meta.dtd -------------------------------------------------------------------------------- /locale/es-ES/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/es-ES/options.dtd -------------------------------------------------------------------------------- /locale/fi/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/fi/button.dtd -------------------------------------------------------------------------------- /locale/fi/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/fi/meta.dtd -------------------------------------------------------------------------------- /locale/fi/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/fi/options.dtd -------------------------------------------------------------------------------- /locale/fi/pre_button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/fi/pre_button.dtd -------------------------------------------------------------------------------- /locale/fi/pre_files.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/fi/pre_files.dtd -------------------------------------------------------------------------------- /locale/fi/pre_options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/fi/pre_options.dtd -------------------------------------------------------------------------------- /locale/fr/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/fr/button.dtd -------------------------------------------------------------------------------- /locale/fr/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/fr/meta.dtd -------------------------------------------------------------------------------- /locale/fr/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/fr/options.dtd -------------------------------------------------------------------------------- /locale/fr/pre_button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/fr/pre_button.dtd -------------------------------------------------------------------------------- /locale/fr/pre_files.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/fr/pre_files.dtd -------------------------------------------------------------------------------- /locale/fr/pre_options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/fr/pre_options.dtd -------------------------------------------------------------------------------- /locale/he-IL/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/he-IL/button.dtd -------------------------------------------------------------------------------- /locale/he-IL/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/he-IL/meta.dtd -------------------------------------------------------------------------------- /locale/he-IL/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/he-IL/options.dtd -------------------------------------------------------------------------------- /locale/it/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/it/button.dtd -------------------------------------------------------------------------------- /locale/it/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/it/meta.dtd -------------------------------------------------------------------------------- /locale/it/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/it/options.dtd -------------------------------------------------------------------------------- /locale/it/pre_button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/it/pre_button.dtd -------------------------------------------------------------------------------- /locale/it/pre_files.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/it/pre_files.dtd -------------------------------------------------------------------------------- /locale/it/pre_options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/it/pre_options.dtd -------------------------------------------------------------------------------- /locale/ja-JP/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ja-JP/button.dtd -------------------------------------------------------------------------------- /locale/ja-JP/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ja-JP/meta.dtd -------------------------------------------------------------------------------- /locale/ja-JP/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ja-JP/options.dtd -------------------------------------------------------------------------------- /locale/ko-KR/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ko-KR/button.dtd -------------------------------------------------------------------------------- /locale/ko-KR/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ko-KR/meta.dtd -------------------------------------------------------------------------------- /locale/ko-KR/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ko-KR/options.dtd -------------------------------------------------------------------------------- /locale/nl/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/nl/button.dtd -------------------------------------------------------------------------------- /locale/nl/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/nl/meta.dtd -------------------------------------------------------------------------------- /locale/nl/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/nl/options.dtd -------------------------------------------------------------------------------- /locale/nl/pre_button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/nl/pre_button.dtd -------------------------------------------------------------------------------- /locale/nl/pre_files.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/nl/pre_files.dtd -------------------------------------------------------------------------------- /locale/nl/pre_options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/nl/pre_options.dtd -------------------------------------------------------------------------------- /locale/pl/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/pl/button.dtd -------------------------------------------------------------------------------- /locale/pl/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/pl/meta.dtd -------------------------------------------------------------------------------- /locale/pl/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/pl/options.dtd -------------------------------------------------------------------------------- /locale/pl/pre_button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/pl/pre_button.dtd -------------------------------------------------------------------------------- /locale/pl/pre_files.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/pl/pre_files.dtd -------------------------------------------------------------------------------- /locale/pl/pre_options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/pl/pre_options.dtd -------------------------------------------------------------------------------- /locale/pt-BR/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/pt-BR/button.dtd -------------------------------------------------------------------------------- /locale/pt-BR/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/pt-BR/meta.dtd -------------------------------------------------------------------------------- /locale/pt-BR/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/pt-BR/options.dtd -------------------------------------------------------------------------------- /locale/ro/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ro/button.dtd -------------------------------------------------------------------------------- /locale/ro/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ro/meta.dtd -------------------------------------------------------------------------------- /locale/ro/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ro/options.dtd -------------------------------------------------------------------------------- /locale/ro/pre_button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ro/pre_button.dtd -------------------------------------------------------------------------------- /locale/ro/pre_files.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ro/pre_files.dtd -------------------------------------------------------------------------------- /locale/ro/pre_options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ro/pre_options.dtd -------------------------------------------------------------------------------- /locale/ru-RU/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ru-RU/button.dtd -------------------------------------------------------------------------------- /locale/ru-RU/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ru-RU/meta.dtd -------------------------------------------------------------------------------- /locale/ru-RU/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/ru-RU/options.dtd -------------------------------------------------------------------------------- /locale/sk-SK/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/sk-SK/button.dtd -------------------------------------------------------------------------------- /locale/sk-SK/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/sk-SK/meta.dtd -------------------------------------------------------------------------------- /locale/sk-SK/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/sk-SK/options.dtd -------------------------------------------------------------------------------- /locale/sl-SI/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/sl-SI/button.dtd -------------------------------------------------------------------------------- /locale/sl-SI/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/sl-SI/meta.dtd -------------------------------------------------------------------------------- /locale/sl-SI/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/sl-SI/options.dtd -------------------------------------------------------------------------------- /locale/sl-SI/pre_files.dtd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /locale/sv-SE/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/sv-SE/button.dtd -------------------------------------------------------------------------------- /locale/sv-SE/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/sv-SE/meta.dtd -------------------------------------------------------------------------------- /locale/sv-SE/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/sv-SE/options.dtd -------------------------------------------------------------------------------- /locale/tr/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/tr/button.dtd -------------------------------------------------------------------------------- /locale/tr/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/tr/meta.dtd -------------------------------------------------------------------------------- /locale/tr/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/tr/options.dtd -------------------------------------------------------------------------------- /locale/tr/pre_button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/tr/pre_button.dtd -------------------------------------------------------------------------------- /locale/tr/pre_button.properties: -------------------------------------------------------------------------------- 1 | empty=Boş 2 | tb-useragent-switch.label=Kullanıcı aracı -------------------------------------------------------------------------------- /locale/tr/pre_options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/tr/pre_options.dtd -------------------------------------------------------------------------------- /locale/zh-CN/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/zh-CN/button.dtd -------------------------------------------------------------------------------- /locale/zh-CN/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/zh-CN/meta.dtd -------------------------------------------------------------------------------- /locale/zh-CN/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/zh-CN/options.dtd -------------------------------------------------------------------------------- /locale/zh-TW/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/zh-TW/button.dtd -------------------------------------------------------------------------------- /locale/zh-TW/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/zh-TW/meta.dtd -------------------------------------------------------------------------------- /locale/zh-TW/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/zh-TW/options.dtd -------------------------------------------------------------------------------- /locale/zh/button.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/zh/button.dtd -------------------------------------------------------------------------------- /locale/zh/meta.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/zh/meta.dtd -------------------------------------------------------------------------------- /locale/zh/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/locale/zh/options.dtd -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/make.sh -------------------------------------------------------------------------------- /nightly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/nightly.json -------------------------------------------------------------------------------- /nightly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/nightly.sh -------------------------------------------------------------------------------- /options/do.reload.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/options/do.reload.xul -------------------------------------------------------------------------------- /options/next.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/options/next.xul -------------------------------------------------------------------------------- /pre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre.json -------------------------------------------------------------------------------- /pre/tb-about-permissions/image: -------------------------------------------------------------------------------- 1 | world-key.png -------------------------------------------------------------------------------- /pre/tb-about-permissions/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-addon-options/image: -------------------------------------------------------------------------------- 1 | plugin-gear.png -------------------------------------------------------------------------------- /pre/tb-addon-options/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-addons-exceptions/description: -------------------------------------------------------------------------------- 1 | Open Dialog for Add-ons Allowed Installation Sites -------------------------------------------------------------------------------- /pre/tb-addons-exceptions/image: -------------------------------------------------------------------------------- 1 | plugin-key.png -------------------------------------------------------------------------------- /pre/tb-addons-exceptions/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-archive-thread/image: -------------------------------------------------------------------------------- 1 | box.png 2 | -------------------------------------------------------------------------------- /pre/tb-archive-thread/key: -------------------------------------------------------------------------------- 1 | E:shift 2 | -------------------------------------------------------------------------------- /pre/tb-base64/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-base64/browser.js -------------------------------------------------------------------------------- /pre/tb-base64/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-base64/browser.xul -------------------------------------------------------------------------------- /pre/tb-base64/description: -------------------------------------------------------------------------------- 1 | Converts Files to their base64 equivalent 2 | -------------------------------------------------------------------------------- /pre/tb-base64/image: -------------------------------------------------------------------------------- 1 | building-go.png -------------------------------------------------------------------------------- /pre/tb-base64/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-base64/strings -------------------------------------------------------------------------------- /pre/tb-bookmark-sidebar/image: -------------------------------------------------------------------------------- 1 | bookmark.png -------------------------------------------------------------------------------- /pre/tb-bookmark-sidebar/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-browser-console/description: -------------------------------------------------------------------------------- 1 | Open the Browser Console to view error messages. -------------------------------------------------------------------------------- /pre/tb-browser-console/image: -------------------------------------------------------------------------------- 1 | application-gear.png -------------------------------------------------------------------------------- /pre/tb-browser-console/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-codefisher/description: -------------------------------------------------------------------------------- 1 | Opens various pages of the Codefisher.org website. -------------------------------------------------------------------------------- /pre/tb-codefisher/image: -------------------------------------------------------------------------------- 1 | codefisher.png -------------------------------------------------------------------------------- /pre/tb-codefisher/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false -------------------------------------------------------------------------------- /pre/tb-codefisher/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-codefisher/strings -------------------------------------------------------------------------------- /pre/tb-color-picker/image: -------------------------------------------------------------------------------- 1 | color-wheel.png 2 | -------------------------------------------------------------------------------- /pre/tb-color-picker/preferences: -------------------------------------------------------------------------------- 1 | colorpicker.intab:false 2 | -------------------------------------------------------------------------------- /pre/tb-cookie-exceptions/description: -------------------------------------------------------------------------------- 1 | Open the cookie exceptions dialog. -------------------------------------------------------------------------------- /pre/tb-cookie-exceptions/image: -------------------------------------------------------------------------------- 1 | cookie-error.png -------------------------------------------------------------------------------- /pre/tb-cookie-exceptions/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-copy/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-copy/browser.xul -------------------------------------------------------------------------------- /pre/tb-copy/description: -------------------------------------------------------------------------------- 1 | Copy selected text. -------------------------------------------------------------------------------- /pre/tb-copy/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-copy/image -------------------------------------------------------------------------------- /pre/tb-copy/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-copy/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-copy/mail.xul -------------------------------------------------------------------------------- /pre/tb-copy/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-copy/strings -------------------------------------------------------------------------------- /pre/tb-create-profile/description: -------------------------------------------------------------------------------- 1 | Create a new profile. -------------------------------------------------------------------------------- /pre/tb-create-profile/image: -------------------------------------------------------------------------------- 1 | user-add.png 2 | -------------------------------------------------------------------------------- /pre/tb-create-profile/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-cut/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-cut/browser.xul -------------------------------------------------------------------------------- /pre/tb-cut/description: -------------------------------------------------------------------------------- 1 | Cut selected text. -------------------------------------------------------------------------------- /pre/tb-cut/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-cut/image -------------------------------------------------------------------------------- /pre/tb-cut/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-cut/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-cut/mail.xul -------------------------------------------------------------------------------- /pre/tb-cut/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-cut/strings -------------------------------------------------------------------------------- /pre/tb-delete-cookies/description: -------------------------------------------------------------------------------- 1 | Deletes all browser cookies. -------------------------------------------------------------------------------- /pre/tb-delete-cookies/image: -------------------------------------------------------------------------------- 1 | cookie-delete.png -------------------------------------------------------------------------------- /pre/tb-delete-cookies/preferences: -------------------------------------------------------------------------------- 1 | delete.cookies.check:true -------------------------------------------------------------------------------- /pre/tb-delete-session-cookies/image: -------------------------------------------------------------------------------- 1 | cookie-time.png -------------------------------------------------------------------------------- /pre/tb-developer-toolbar/description: -------------------------------------------------------------------------------- 1 | Toggles the Developer Toolbar -------------------------------------------------------------------------------- /pre/tb-developer-toolbar/image: -------------------------------------------------------------------------------- 1 | wrench-orange.png -------------------------------------------------------------------------------- /pre/tb-developer-toolbar/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-down-page/description: -------------------------------------------------------------------------------- 1 | Scroll current tab one page down. -------------------------------------------------------------------------------- /pre/tb-down-page/image: -------------------------------------------------------------------------------- 1 | resultset-vertical-after.png -------------------------------------------------------------------------------- /pre/tb-down-page/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-down-page/strings -------------------------------------------------------------------------------- /pre/tb-external-application/description: -------------------------------------------------------------------------------- 1 | Runs an external application -------------------------------------------------------------------------------- /pre/tb-external-application/image: -------------------------------------------------------------------------------- 1 | application-xp-terminal.png -------------------------------------------------------------------------------- /pre/tb-eyedropper/files/eyedropper_crosshairs.css: -------------------------------------------------------------------------------- 1 | * { 2 | cursor: crosshair !important; 3 | } -------------------------------------------------------------------------------- /pre/tb-eyedropper/files/eyedropper_nocursor.css: -------------------------------------------------------------------------------- 1 | * { 2 | cursor: none !important; 3 | } -------------------------------------------------------------------------------- /pre/tb-eyedropper/image: -------------------------------------------------------------------------------- 1 | eyedropper.png -------------------------------------------------------------------------------- /pre/tb-eyedropper/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-eyedropper/strings -------------------------------------------------------------------------------- /pre/tb-first-last-tab/image: -------------------------------------------------------------------------------- 1 | tabs-star.png -------------------------------------------------------------------------------- /pre/tb-format-menu/description: -------------------------------------------------------------------------------- 1 | Show the Format Menu -------------------------------------------------------------------------------- /pre/tb-format-menu/image: -------------------------------------------------------------------------------- 1 | text.png -------------------------------------------------------------------------------- /pre/tb-format-menu/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-free-memory/description: -------------------------------------------------------------------------------- 1 | Free unused memory that Firefox is currently using. -------------------------------------------------------------------------------- /pre/tb-free-memory/image: -------------------------------------------------------------------------------- 1 | memory.png -------------------------------------------------------------------------------- /pre/tb-free-memory/key: -------------------------------------------------------------------------------- 1 | M:alt -------------------------------------------------------------------------------- /pre/tb-free-memory/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-free-memory/modules: -------------------------------------------------------------------------------- 1 | resource://gre/modules/Services.jsm -------------------------------------------------------------------------------- /pre/tb-go-back/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-go-back/image -------------------------------------------------------------------------------- /pre/tb-go-back/option.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-go-back/option.xul -------------------------------------------------------------------------------- /pre/tb-go-back/portal.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-go-back/portal.xul -------------------------------------------------------------------------------- /pre/tb-go-back/preferences: -------------------------------------------------------------------------------- 1 | showamenu.back-button:true -------------------------------------------------------------------------------- /pre/tb-go-back/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-go-back/strings -------------------------------------------------------------------------------- /pre/tb-go-forward/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-go-forward/image -------------------------------------------------------------------------------- /pre/tb-go-forward/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-go-forward/strings -------------------------------------------------------------------------------- /pre/tb-go-menu/description: -------------------------------------------------------------------------------- 1 | Show the Go Menu -------------------------------------------------------------------------------- /pre/tb-go-menu/image: -------------------------------------------------------------------------------- 1 | menu-go.png -------------------------------------------------------------------------------- /pre/tb-go-menu/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-go-menu/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-go-menu/mail.xul -------------------------------------------------------------------------------- /pre/tb-go-menu/read.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-go-menu/read.xul -------------------------------------------------------------------------------- /pre/tb-go-menu/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-go-menu/strings -------------------------------------------------------------------------------- /pre/tb-help-menu/description: -------------------------------------------------------------------------------- 1 | Show the Help Menu -------------------------------------------------------------------------------- /pre/tb-help-menu/image: -------------------------------------------------------------------------------- 1 | help.png -------------------------------------------------------------------------------- /pre/tb-help-menu/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-help-menu/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-help-menu/strings -------------------------------------------------------------------------------- /pre/tb-hide-other-toolbars/image: -------------------------------------------------------------------------------- 1 | toolbar.png -------------------------------------------------------------------------------- /pre/tb-hide-other-toolbars/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-history-sidebar/image: -------------------------------------------------------------------------------- 1 | time.png -------------------------------------------------------------------------------- /pre/tb-history-sidebar/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-insert-menu/description: -------------------------------------------------------------------------------- 1 | Show Insert Menu -------------------------------------------------------------------------------- /pre/tb-insert-menu/image: -------------------------------------------------------------------------------- 1 | layout.png -------------------------------------------------------------------------------- /pre/tb-inspector/image: -------------------------------------------------------------------------------- 1 | layout-code.png -------------------------------------------------------------------------------- /pre/tb-inspector/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-inspector/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-inspector/strings -------------------------------------------------------------------------------- /pre/tb-jsdebugger/image: -------------------------------------------------------------------------------- 1 | script-gear.png -------------------------------------------------------------------------------- /pre/tb-jsdebugger/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-jsdebugger/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-jsdebugger/strings -------------------------------------------------------------------------------- /pre/tb-jsprofiler/image: -------------------------------------------------------------------------------- 1 | script-time.png -------------------------------------------------------------------------------- /pre/tb-jsprofiler/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-jsprofiler/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-jsprofiler/strings -------------------------------------------------------------------------------- /pre/tb-languages/image: -------------------------------------------------------------------------------- 1 | flag-blue.png -------------------------------------------------------------------------------- /pre/tb-languages/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-languages/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-languages/strings -------------------------------------------------------------------------------- /pre/tb-message-menu/image: -------------------------------------------------------------------------------- 1 | menu-email.png -------------------------------------------------------------------------------- /pre/tb-move-to-window/description: -------------------------------------------------------------------------------- 1 | Moves the current tab to a new window. -------------------------------------------------------------------------------- /pre/tb-move-to-window/image: -------------------------------------------------------------------------------- 1 | application-go.png -------------------------------------------------------------------------------- /pre/tb-network-monitor/image: -------------------------------------------------------------------------------- 1 | world-network-lightning.png -------------------------------------------------------------------------------- /pre/tb-network-monitor/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-new-window/description: -------------------------------------------------------------------------------- 1 | Open a new browser window. -------------------------------------------------------------------------------- /pre/tb-new-window/image: -------------------------------------------------------------------------------- 1 | application.png -------------------------------------------------------------------------------- /pre/tb-new-window/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-new-window/strings -------------------------------------------------------------------------------- /pre/tb-not-junk/description: -------------------------------------------------------------------------------- 1 | Mark the selected messages as Not Junk. -------------------------------------------------------------------------------- /pre/tb-not-junk/image: -------------------------------------------------------------------------------- 1 | flame.png -------------------------------------------------------------------------------- /pre/tb-not-junk/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-not-junk/strings -------------------------------------------------------------------------------- /pre/tb-open-download-folder/description: -------------------------------------------------------------------------------- 1 | Open the default download folder. -------------------------------------------------------------------------------- /pre/tb-open-download-folder/image: -------------------------------------------------------------------------------- 1 | folder-down.png -------------------------------------------------------------------------------- /pre/tb-options-menu/image: -------------------------------------------------------------------------------- 1 | cog.png -------------------------------------------------------------------------------- /pre/tb-options-menu/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-paste-as-quote/image: -------------------------------------------------------------------------------- 1 | paste-comment.png -------------------------------------------------------------------------------- /pre/tb-paste/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-paste/browser.xul -------------------------------------------------------------------------------- /pre/tb-paste/description: -------------------------------------------------------------------------------- 1 | Paste text. -------------------------------------------------------------------------------- /pre/tb-paste/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-paste/image -------------------------------------------------------------------------------- /pre/tb-paste/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-paste/mail.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-paste/mail.xul -------------------------------------------------------------------------------- /pre/tb-paste/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-paste/strings -------------------------------------------------------------------------------- /pre/tb-pin-tab/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-pin-tab/browser.js -------------------------------------------------------------------------------- /pre/tb-pin-tab/description: -------------------------------------------------------------------------------- 1 | Toggle if the current tab is pinned or not. -------------------------------------------------------------------------------- /pre/tb-pin-tab/image: -------------------------------------------------------------------------------- 1 | pin.png -------------------------------------------------------------------------------- /pre/tb-pin-tab/portal.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-pin-tab/portal.xul -------------------------------------------------------------------------------- /pre/tb-pin-tab/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-pin-tab/strings -------------------------------------------------------------------------------- /pre/tb-pipeline-toggle/description: -------------------------------------------------------------------------------- 1 | Toggle the Pipeline setting. -------------------------------------------------------------------------------- /pre/tb-pipeline-toggle/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-plugins/button.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-plugins/button.xul -------------------------------------------------------------------------------- /pre/tb-plugins/image: -------------------------------------------------------------------------------- 1 | brick.png -------------------------------------------------------------------------------- /pre/tb-plugins/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-plugins/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-plugins/strings -------------------------------------------------------------------------------- /pre/tb-remote-content/image: -------------------------------------------------------------------------------- 1 | layout-world.png -------------------------------------------------------------------------------- /pre/tb-responsive-ui/image: -------------------------------------------------------------------------------- 1 | mobile.png -------------------------------------------------------------------------------- /pre/tb-responsive-ui/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-restart-addons-disabled/image: -------------------------------------------------------------------------------- 1 | plugin-error.png -------------------------------------------------------------------------------- /pre/tb-restart-addons-disabled/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-rewrap-text/description: -------------------------------------------------------------------------------- 1 | Rewraps the message text -------------------------------------------------------------------------------- /pre/tb-rewrap-text/image: -------------------------------------------------------------------------------- 1 | text-wrap.png -------------------------------------------------------------------------------- /pre/tb-scratch-pad/description: -------------------------------------------------------------------------------- 1 | Open the Scratchpad window for testing JavaScript. -------------------------------------------------------------------------------- /pre/tb-scratch-pad/image: -------------------------------------------------------------------------------- 1 | script-edit.png -------------------------------------------------------------------------------- /pre/tb-scratch-pad/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-send-referrer/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-services/image: -------------------------------------------------------------------------------- 1 | cloud.png -------------------------------------------------------------------------------- /pre/tb-services/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-services/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-services/strings -------------------------------------------------------------------------------- /pre/tb-sidebar/image: -------------------------------------------------------------------------------- 1 | application-side-boxes.png -------------------------------------------------------------------------------- /pre/tb-sidebar/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-sidebar/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-sidebar/strings -------------------------------------------------------------------------------- /pre/tb-social-share/image: -------------------------------------------------------------------------------- 1 | share.png -------------------------------------------------------------------------------- /pre/tb-style-editor/image: -------------------------------------------------------------------------------- 1 | css.png -------------------------------------------------------------------------------- /pre/tb-style-editor/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-switch-profile/description: -------------------------------------------------------------------------------- 1 | Switch the Profile that you are currently using. -------------------------------------------------------------------------------- /pre/tb-switch-profile/image: -------------------------------------------------------------------------------- 1 | user-lightning.png -------------------------------------------------------------------------------- /pre/tb-switch-profile/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-tab-close-history/image: -------------------------------------------------------------------------------- 1 | bin-undo.png -------------------------------------------------------------------------------- /pre/tb-text-case-change/image: -------------------------------------------------------------------------------- 1 | font.png -------------------------------------------------------------------------------- /pre/tb-text-zoom-only/description: -------------------------------------------------------------------------------- 1 | Toggle between text and page zoom. -------------------------------------------------------------------------------- /pre/tb-text-zoom-only/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-toggle-tools/description: -------------------------------------------------------------------------------- 1 | Show or Hide the Web Tools panel -------------------------------------------------------------------------------- /pre/tb-toggle-tools/image: -------------------------------------------------------------------------------- 1 | world-gear.png -------------------------------------------------------------------------------- /pre/tb-toggle-tools/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-toolbar-display/image: -------------------------------------------------------------------------------- 1 | toolbar-gear.png -------------------------------------------------------------------------------- /pre/tb-toolbar-display/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-up-page/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-up-page/browser.js -------------------------------------------------------------------------------- /pre/tb-up-page/description: -------------------------------------------------------------------------------- 1 | Scroll current tab one page up. -------------------------------------------------------------------------------- /pre/tb-up-page/image: -------------------------------------------------------------------------------- 1 | resultset-vertical-before.png -------------------------------------------------------------------------------- /pre/tb-up-page/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-up-page/strings -------------------------------------------------------------------------------- /pre/tb-useragent-switch/image: -------------------------------------------------------------------------------- 1 | user.png -------------------------------------------------------------------------------- /pre/tb-useragent-switch/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-web-console/image: -------------------------------------------------------------------------------- 1 | script-error.png -------------------------------------------------------------------------------- /pre/tb-web-console/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-web-developer-menu/image: -------------------------------------------------------------------------------- 1 | world-gear.png -------------------------------------------------------------------------------- /pre/tb-web-developer-menu/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-webide/description: -------------------------------------------------------------------------------- 1 | Open the WebIDE to manage your apps. -------------------------------------------------------------------------------- /pre/tb-webide/image: -------------------------------------------------------------------------------- 1 | plugin-wrench.png -------------------------------------------------------------------------------- /pre/tb-webide/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-webide/portal.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-webide/portal.xul -------------------------------------------------------------------------------- /pre/tb-webide/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/pre/tb-webide/strings -------------------------------------------------------------------------------- /pre/tb-window-menu/description: -------------------------------------------------------------------------------- 1 | Show the window Menu -------------------------------------------------------------------------------- /pre/tb-window-menu/image: -------------------------------------------------------------------------------- 1 | application-xp.png -------------------------------------------------------------------------------- /release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/release.json -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/release.sh -------------------------------------------------------------------------------- /single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/single.json -------------------------------------------------------------------------------- /single_button_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/single_button_config.py -------------------------------------------------------------------------------- /singles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/singles.sh -------------------------------------------------------------------------------- /staging/copy-address/image: -------------------------------------------------------------------------------- 1 | vcard.png -------------------------------------------------------------------------------- /staging/get-inbox/description: -------------------------------------------------------------------------------- 1 | Change the currently selected folder to your Inbox. -------------------------------------------------------------------------------- /staging/get-inbox/image: -------------------------------------------------------------------------------- 1 | inbox-go.png -------------------------------------------------------------------------------- /staging/home-page-change/description: -------------------------------------------------------------------------------- 1 | Change Your Home Page -------------------------------------------------------------------------------- /staging/home-page-change/legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staging/home-page-change/modules: -------------------------------------------------------------------------------- 1 | resource://gre/modules/SharedPromptUtils.jsm -------------------------------------------------------------------------------- /staging/home-page-change/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false -------------------------------------------------------------------------------- /staging/ignored-threads/image: -------------------------------------------------------------------------------- 1 | comments-thread-error.png -------------------------------------------------------------------------------- /staging/read-message/description: -------------------------------------------------------------------------------- 1 | Open the currently selected message in Thunderbird. -------------------------------------------------------------------------------- /staging/read-message/image: -------------------------------------------------------------------------------- 1 | email-open.png -------------------------------------------------------------------------------- /staging/toggle-starred/image: -------------------------------------------------------------------------------- 1 | star.png -------------------------------------------------------------------------------- /staging/unread-threads/image: -------------------------------------------------------------------------------- 1 | comments-thread-star.png -------------------------------------------------------------------------------- /staging/watched-with-unread-threads/image: -------------------------------------------------------------------------------- 1 | comments-thread-add.png -------------------------------------------------------------------------------- /staging/with-unread-threads/image: -------------------------------------------------------------------------------- 1 | comments-thread-delete.png -------------------------------------------------------------------------------- /startbutton.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/startbutton.sh -------------------------------------------------------------------------------- /template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/template.json -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/test.sh -------------------------------------------------------------------------------- /toolbar_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/toolbar_button.json -------------------------------------------------------------------------------- /translate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/translate.json -------------------------------------------------------------------------------- /translate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/translate.sh -------------------------------------------------------------------------------- /web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/web.json -------------------------------------------------------------------------------- /webextension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/webextension.json -------------------------------------------------------------------------------- /webextensions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/webextensions.sh -------------------------------------------------------------------------------- /xpi/amo_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/HEAD/xpi/amo_download.py --------------------------------------------------------------------------------