├── .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 /alpha/tb-notepad/description: -------------------------------------------------------------------------------- 1 | Opens a simple notepad in the sidebar 2 | -------------------------------------------------------------------------------- /alpha/tb-notepad/image: -------------------------------------------------------------------------------- 1 | note.png 2 | -------------------------------------------------------------------------------- /alpha/tiny-url/description: -------------------------------------------------------------------------------- 1 | Create a tiny URL using Xrl.in and copies it to the URL bar. -------------------------------------------------------------------------------- /alpha/tiny-url/image: -------------------------------------------------------------------------------- 1 | link.png -------------------------------------------------------------------------------- /alpha/tiny-url/preferences: -------------------------------------------------------------------------------- 1 | xrl.in.domain:"xrl.in" -------------------------------------------------------------------------------- /data/about-application/description: -------------------------------------------------------------------------------- 1 | Open the about window. Useful for checking exactly what version you have installed. -------------------------------------------------------------------------------- /data/about-application/image: -------------------------------------------------------------------------------- 1 | information.png -------------------------------------------------------------------------------- /data/about-application/key: -------------------------------------------------------------------------------- 1 | A:accel,alt -------------------------------------------------------------------------------- /data/about-application/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/about-application/legacy -------------------------------------------------------------------------------- /data/about-cache/description: -------------------------------------------------------------------------------- 1 | Open about:cache to view cached documents or images. -------------------------------------------------------------------------------- /data/about-cache/image: -------------------------------------------------------------------------------- 1 | drive-web.png -------------------------------------------------------------------------------- /data/about-cache/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/about-cache/legacy -------------------------------------------------------------------------------- /data/about-cache/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false -------------------------------------------------------------------------------- /data/about-config/background.js: -------------------------------------------------------------------------------- 1 | function openAboutConfig() { 2 | browser.tabs.create({ 3 | url: 'about:config', 4 | active: true, 5 | }); 6 | } 7 | 8 | browser.browserAction.onClicked.addListener(openAboutConfig); -------------------------------------------------------------------------------- /data/about-config/image: -------------------------------------------------------------------------------- 1 | wrench.png -------------------------------------------------------------------------------- /data/about-config/key: -------------------------------------------------------------------------------- 1 | K:accel,alt -------------------------------------------------------------------------------- /data/about-config/legacy: -------------------------------------------------------------------------------- 1 | { 2 | "default_title": "about-config.label", 3 | "name": "about-config.label" 4 | } -------------------------------------------------------------------------------- /data/about-config/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false -------------------------------------------------------------------------------- /data/about-disk-cache/description: -------------------------------------------------------------------------------- 1 | Open about:cache Disk to view cached documents or images saved to your hard drive. -------------------------------------------------------------------------------- /data/about-disk-cache/image: -------------------------------------------------------------------------------- 1 | drive.png -------------------------------------------------------------------------------- /data/about-disk-cache/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/about-disk-cache/legacy -------------------------------------------------------------------------------- /data/about-disk-cache/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false -------------------------------------------------------------------------------- /data/about-mem-cache/description: -------------------------------------------------------------------------------- 1 | Open about:cache Memory to view cached documents or images in Memory. -------------------------------------------------------------------------------- /data/about-mem-cache/image: -------------------------------------------------------------------------------- 1 | memory.png -------------------------------------------------------------------------------- /data/about-mem-cache/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/about-mem-cache/legacy -------------------------------------------------------------------------------- /data/about-mem-cache/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false -------------------------------------------------------------------------------- /data/about-plugins/description: -------------------------------------------------------------------------------- 1 | Open about:plugins to view installed plug-ins. -------------------------------------------------------------------------------- /data/about-plugins/image: -------------------------------------------------------------------------------- 1 | brick.png -------------------------------------------------------------------------------- /data/about-plugins/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/about-plugins/legacy -------------------------------------------------------------------------------- /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/description: -------------------------------------------------------------------------------- 1 | Run Account Wizard to set up a new account in Thunderbird. -------------------------------------------------------------------------------- /data/accountwizard/image: -------------------------------------------------------------------------------- 1 | user-lightning.png -------------------------------------------------------------------------------- /data/add-address/description: -------------------------------------------------------------------------------- 1 | Add a new email address to the address book. -------------------------------------------------------------------------------- /data/add-address/image: -------------------------------------------------------------------------------- 1 | vcard-add.png -------------------------------------------------------------------------------- /data/addons/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/addons/legacy -------------------------------------------------------------------------------- /data/addons/style.css: -------------------------------------------------------------------------------- 1 | #addons[cui-areatype="menu-panel"] dropmarker { 2 | display:none; 3 | } 4 | 5 | #addons[cui-areatype="menu-panel"] .toolbarbutton-icon { 6 | width:16px; 7 | height:16px; 8 | } -------------------------------------------------------------------------------- /data/all-threads/description: -------------------------------------------------------------------------------- 1 | View all the threads in the current folder, not just unread or some other sub set. -------------------------------------------------------------------------------- /data/all-threads/image: -------------------------------------------------------------------------------- 1 | comments-thread.png -------------------------------------------------------------------------------- /data/attachments-delete/description: -------------------------------------------------------------------------------- 1 | Delete Attachments from and email. -------------------------------------------------------------------------------- /data/attachments-delete/image: -------------------------------------------------------------------------------- 1 | attach-delete.png -------------------------------------------------------------------------------- /data/attachments-detach/description: -------------------------------------------------------------------------------- 1 | Detach Attachments from an email. -------------------------------------------------------------------------------- /data/attachments-detach/image: -------------------------------------------------------------------------------- 1 | attach-detach.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/description: -------------------------------------------------------------------------------- 1 | Bookmark the current page with out that allowing popup asking where you want it put, The top level bookmark folder is fine thanks! -------------------------------------------------------------------------------- /data/bookmark-nopop/image: -------------------------------------------------------------------------------- 1 | bookmark-go.png -------------------------------------------------------------------------------- /data/bookmark-tabs/description: -------------------------------------------------------------------------------- 1 | Bookmark all the currently open tabs. The new bookmarks will be placed in a new folder of your choice. -------------------------------------------------------------------------------- /data/bookmark-tabs/image: -------------------------------------------------------------------------------- 1 | tabs-bookmark.png 2 | *tabs-bookmark.png [disabled="true"] -------------------------------------------------------------------------------- /data/bookmark/browser.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/bookmark/image: -------------------------------------------------------------------------------- 1 | bookmark-add.png 2 | -------------------------------------------------------------------------------- /data/bookmarks-menu-button1/description: -------------------------------------------------------------------------------- 1 | The Bookmark Menu made with an icon, uses less toolbar space and looks much nicer. -------------------------------------------------------------------------------- /data/bookmarks-menu-button1/image: -------------------------------------------------------------------------------- 1 | menu-bookmark.png -------------------------------------------------------------------------------- /data/bookmarks-menu-button2/description: -------------------------------------------------------------------------------- 1 | The Bookmark Menu made with an icon, uses less toolbar space and looks much nicer. -------------------------------------------------------------------------------- /data/bookmarks-menu-button2/image: -------------------------------------------------------------------------------- 1 | menu-bookmark.png -------------------------------------------------------------------------------- /data/bottom-page/background.js: -------------------------------------------------------------------------------- 1 | browser.browserAction.onClicked.addListener(function() { 2 | browser.tabs.executeScript({ 3 | "code": "window.scrollTo(0, document.documentElement.scrollHeight);" 4 | }); 5 | }); -------------------------------------------------------------------------------- /data/bottom-page/description: -------------------------------------------------------------------------------- 1 | Go to the very bottom of the current page. -------------------------------------------------------------------------------- /data/bottom-page/image: -------------------------------------------------------------------------------- 1 | resultset-vertical-end.png -------------------------------------------------------------------------------- /data/bottom-page/key: -------------------------------------------------------------------------------- 1 | VK_PAGE_DOWN:alt -------------------------------------------------------------------------------- /data/change-text-direction/description: -------------------------------------------------------------------------------- 1 | Change the text direction from left to right or right to left. -------------------------------------------------------------------------------- /data/change-text-direction/image: -------------------------------------------------------------------------------- 1 | text-direction-ltr.png -------------------------------------------------------------------------------- /data/clear-data/description: -------------------------------------------------------------------------------- 1 | Open the clear private data window. -------------------------------------------------------------------------------- /data/clear-data/image: -------------------------------------------------------------------------------- 1 | brush.png -------------------------------------------------------------------------------- /data/clear-url/description: -------------------------------------------------------------------------------- 1 | Hide the text of the url bar, so the link is no longer visiable. -------------------------------------------------------------------------------- /data/clear-url/image: -------------------------------------------------------------------------------- 1 | link-error.png -------------------------------------------------------------------------------- /data/clear-url/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/clear-url/legacy -------------------------------------------------------------------------------- /data/clipboard-button/description: -------------------------------------------------------------------------------- 1 | Open a link you have copied to the clip board. -------------------------------------------------------------------------------- /data/clipboard-button/image: -------------------------------------------------------------------------------- 1 | paste-link.png 2 | paste-link.png #clipboard-button-load 3 | tab-link.png #clipboard-button-tab 4 | application-link.png #clipboard-button-window -------------------------------------------------------------------------------- /data/clipboard-button/preferences: -------------------------------------------------------------------------------- 1 | clipboard.open.mode:0 -------------------------------------------------------------------------------- /data/close-all-tabs/browser.js: -------------------------------------------------------------------------------- 1 | BrowserCloseAllTabs: function(event) { 2 | var win = event.target.ownerDocument.defaultView; 3 | win.gBrowser.removeAllTabsBut(win.gBrowser.addTab("about:blank")); 4 | } -------------------------------------------------------------------------------- /data/close-all-tabs/description: -------------------------------------------------------------------------------- 1 | Close all the the currently open tabs. -------------------------------------------------------------------------------- /data/close-all-tabs/image: -------------------------------------------------------------------------------- 1 | tabs-delete.png -------------------------------------------------------------------------------- /data/close-all-tabs/strings: -------------------------------------------------------------------------------- 1 | tbCloseAllTabsNotCurrent=Don't close the current tab 2 | tbCloseAllTabsNotPinned=Don't close pinned tabs -------------------------------------------------------------------------------- /data/close-other-tabs/browser.js: -------------------------------------------------------------------------------- 1 | closeOtherTabs: function(event) { 2 | var win = event.target.ownerDocument.defaultView; 3 | win.gBrowser.removeAllTabsBut(win.gBrowser.mCurrentTab); 4 | } -------------------------------------------------------------------------------- /data/close-other-tabs/description: -------------------------------------------------------------------------------- 1 | Close all the currently open tabs except the selected one. -------------------------------------------------------------------------------- /data/close-other-tabs/image: -------------------------------------------------------------------------------- 1 | tabs-delete-others.png -------------------------------------------------------------------------------- /data/close-other-tabs/strings: -------------------------------------------------------------------------------- 1 | tbCloseOtherTabsNotPinned=Don't close pinned tabs -------------------------------------------------------------------------------- /data/close-tab/background.js: -------------------------------------------------------------------------------- 1 | browser.browserAction.onClicked.addListener(function(tab) { 2 | browser.tabs.remove(tab.id); 3 | }); -------------------------------------------------------------------------------- /data/close-tab/browser.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/close-tab/description: -------------------------------------------------------------------------------- 1 | Close the currently open tab, or if there are no tabs the open window. -------------------------------------------------------------------------------- /data/close-tab/image: -------------------------------------------------------------------------------- 1 | tab-delete.png -------------------------------------------------------------------------------- /data/compact/description: -------------------------------------------------------------------------------- 1 | Compact all Folders; removes redundant information left from deleted messages. -------------------------------------------------------------------------------- /data/compact/image: -------------------------------------------------------------------------------- 1 | folder-brush.png -------------------------------------------------------------------------------- /data/compact/mail.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/create-filter/description: -------------------------------------------------------------------------------- 1 | Create a message filter from the currently selected message. -------------------------------------------------------------------------------- /data/create-filter/image: -------------------------------------------------------------------------------- 1 | funnel-add.png -------------------------------------------------------------------------------- /data/customize-toolbar/image: -------------------------------------------------------------------------------- 1 | toolbar-wrench.png -------------------------------------------------------------------------------- /data/customize-toolbar/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/customize-toolbar/legacy -------------------------------------------------------------------------------- /data/delete-button/browser.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/delete-button/description: -------------------------------------------------------------------------------- 1 | Delete the currently selected item(s) or text. -------------------------------------------------------------------------------- /data/delete-button/image: -------------------------------------------------------------------------------- 1 | delete.png 2 | *delete.png [disabled="true"] -------------------------------------------------------------------------------- /data/delete-button/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/delete-button/legacy -------------------------------------------------------------------------------- /data/delete-event/description: -------------------------------------------------------------------------------- 1 | Delete an event. -------------------------------------------------------------------------------- /data/delete-event/image: -------------------------------------------------------------------------------- 1 | calendar-delete.png 2 | *calendar-delete.png [disabled="true"] -------------------------------------------------------------------------------- /data/delete-junk/description: -------------------------------------------------------------------------------- 1 | Empty the junk email folder of all junk email. -------------------------------------------------------------------------------- /data/delete-junk/image: -------------------------------------------------------------------------------- 1 | flame-delete.png -------------------------------------------------------------------------------- /data/delete-tasks/description: -------------------------------------------------------------------------------- 1 | Delete a task. -------------------------------------------------------------------------------- /data/delete-tasks/image: -------------------------------------------------------------------------------- 1 | task-delete.png 2 | *task-delete.png [disabled="true"] -------------------------------------------------------------------------------- /data/dictionary-list/description: -------------------------------------------------------------------------------- 1 | Change the currently in use Dictionary to a different one with a simple drop down menu. -------------------------------------------------------------------------------- /data/dictionary-list/image: -------------------------------------------------------------------------------- 1 | text-abc.png -------------------------------------------------------------------------------- /data/dictionary-list/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/dictionary-list/legacy -------------------------------------------------------------------------------- /data/ebay/description: -------------------------------------------------------------------------------- 1 | Go to the eBay web site. -------------------------------------------------------------------------------- /data/ebay/image: -------------------------------------------------------------------------------- 1 | ebay.png -------------------------------------------------------------------------------- /data/ebay/preferences: -------------------------------------------------------------------------------- 1 | url.ebay:"http://www.ebay.com/" 2 | always.new.tab:false -------------------------------------------------------------------------------- /data/edit-as-new/description: -------------------------------------------------------------------------------- 1 | Edit an email. -------------------------------------------------------------------------------- /data/edit-as-new/image: -------------------------------------------------------------------------------- 1 | email-edit.png 2 | *email-edit.png [disabled="true"] -------------------------------------------------------------------------------- /data/edit-as-new/mail-header.xul: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /data/edit-as-new/mail.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/edit-draft/description: -------------------------------------------------------------------------------- 1 | Edit a message that you have saved as a draft. -------------------------------------------------------------------------------- /data/edit-draft/image: -------------------------------------------------------------------------------- 1 | page-edit.png -------------------------------------------------------------------------------- /data/empty-trash/description: -------------------------------------------------------------------------------- 1 | Empty the Trash Folder 2 | -------------------------------------------------------------------------------- /data/empty-trash/image: -------------------------------------------------------------------------------- 1 | bin.png -------------------------------------------------------------------------------- /data/empty-trash/modules: -------------------------------------------------------------------------------- 1 | resource://modules/iteratorUtils.jsm 2 | resource://modules/MailUtils.js -------------------------------------------------------------------------------- /data/enlarge/description: -------------------------------------------------------------------------------- 1 | Enlarge the text size on sites that makes the text so small you can't read it. -------------------------------------------------------------------------------- /data/enlarge/image: -------------------------------------------------------------------------------- 1 | magnifier-zoom-in.png -------------------------------------------------------------------------------- /data/enlarge/mail.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/enlarge/read.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/exit/button.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/exit/image: -------------------------------------------------------------------------------- 1 | close-red.png 2 | -------------------------------------------------------------------------------- /data/exit/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/exit/legacy -------------------------------------------------------------------------------- /data/exit/messenger.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/extensions/description: -------------------------------------------------------------------------------- 1 | Open the Extensions Manager to install, uninstall or do any other needed tasks to any of your extensions. -------------------------------------------------------------------------------- /data/extensions/image: -------------------------------------------------------------------------------- 1 | plugin.png 2 | plugin-add.png #tb-extensions-install -------------------------------------------------------------------------------- /data/extensions/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/extensions/legacy -------------------------------------------------------------------------------- /data/favorite-page/description: -------------------------------------------------------------------------------- 1 | Open a page of your choice from a toolbar button. You can set the link from the options window -------------------------------------------------------------------------------- /data/favorite-page/image: -------------------------------------------------------------------------------- 1 | house-link.png -------------------------------------------------------------------------------- /data/favorite-page/preferences: -------------------------------------------------------------------------------- 1 | url.favorite:"" 2 | always.new.tab:false -------------------------------------------------------------------------------- /data/find-again/compose.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/find-again/description: -------------------------------------------------------------------------------- 1 | Find the next bit of text that matches your search. -------------------------------------------------------------------------------- /data/find-again/image: -------------------------------------------------------------------------------- 1 | find-next.png 2 | *find-next.png [disabled="true"] -------------------------------------------------------------------------------- /data/find-prev/compose.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/find-prev/description: -------------------------------------------------------------------------------- 1 | Find the previous bit of text that matches your search. -------------------------------------------------------------------------------- /data/find-prev/image: -------------------------------------------------------------------------------- 1 | find-previous.png 2 | *find-previous.png [disabled="true"] -------------------------------------------------------------------------------- /data/find/description: -------------------------------------------------------------------------------- 1 | Open the find bar to find a word in the current page. -------------------------------------------------------------------------------- /data/find/image: -------------------------------------------------------------------------------- 1 | find.png 2 | *find.png [disabled="true"] -------------------------------------------------------------------------------- /data/find/messenger.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/find/preferences: -------------------------------------------------------------------------------- 1 | find-bar.toggle:true -------------------------------------------------------------------------------- /data/firefox-extension/description: -------------------------------------------------------------------------------- 1 | Open addons.mozilla.org on the page to download more Firefox extensions, link can be changed in about:config if your prefer to use another site. -------------------------------------------------------------------------------- /data/firefox-extension/image: -------------------------------------------------------------------------------- 1 | firefox-addon.png -------------------------------------------------------------------------------- /data/firefox-extension/preferences: -------------------------------------------------------------------------------- 1 | url.firefox-ext:"https://addons.mozilla.org/firefox/extensions/" 2 | url.seamonkey-ext:"https://addons.mozilla.org/seamonkey/extensions/" 3 | always.new.tab:false -------------------------------------------------------------------------------- /data/firefox-theme/description: -------------------------------------------------------------------------------- 1 | Visit the addons.mozilla.org page for downloading more Firefox themes. Link can be changes using about:config if you prefer to use another site. -------------------------------------------------------------------------------- /data/firefox-theme/image: -------------------------------------------------------------------------------- 1 | firefox-theme.png -------------------------------------------------------------------------------- /data/firefox-theme/preferences: -------------------------------------------------------------------------------- 1 | url.firefox-theme:"https://addons.mozilla.org/firefox/themes/" 2 | url.seamonkey-theme:"https://addons.mozilla.org/seamonkey/themes/" 3 | always.new.tab:false -------------------------------------------------------------------------------- /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/description: -------------------------------------------------------------------------------- 1 | Forward the current message as part of the email. -------------------------------------------------------------------------------- /data/forward-as-inline/image: -------------------------------------------------------------------------------- 1 | email-forward-inline.png -------------------------------------------------------------------------------- /data/full-screen/description: -------------------------------------------------------------------------------- 1 | Toggle the window to full screen mode, so you can view as much of the current page as possible. -------------------------------------------------------------------------------- /data/full-screen/image: -------------------------------------------------------------------------------- 1 | application-expand.png -------------------------------------------------------------------------------- /data/full-screen/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/full-screen/legacy -------------------------------------------------------------------------------- /data/full-screen/preferences: -------------------------------------------------------------------------------- 1 | full.screen:false -------------------------------------------------------------------------------- /data/gmail/image: -------------------------------------------------------------------------------- 1 | email-gmail.png -------------------------------------------------------------------------------- /data/gmail/preferences: -------------------------------------------------------------------------------- 1 | url.gmail:"https://mail.google.com/mail" 2 | always.new.tab:false 3 | -------------------------------------------------------------------------------- /data/google/description: -------------------------------------------------------------------------------- 1 | Open the Google home page. The link can be changed using about:config. -------------------------------------------------------------------------------- /data/google/image: -------------------------------------------------------------------------------- 1 | google.png -------------------------------------------------------------------------------- /data/google/preferences: -------------------------------------------------------------------------------- 1 | url.google:"http://www.google.com/" 2 | always.new.tab:false 3 | -------------------------------------------------------------------------------- /data/help/browser.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/help/description: -------------------------------------------------------------------------------- 1 | Open the application help documentation. -------------------------------------------------------------------------------- /data/help/image: -------------------------------------------------------------------------------- 1 | help.png -------------------------------------------------------------------------------- /data/help/key: -------------------------------------------------------------------------------- 1 | VK_F1: -------------------------------------------------------------------------------- /data/help/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/help/legacy -------------------------------------------------------------------------------- /data/help/messenger.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/hotmail-button/preferences: -------------------------------------------------------------------------------- 1 | url.hotmail:"http://www.hotmail.com/" 2 | always.new.tab:false -------------------------------------------------------------------------------- /data/html-mode/description: -------------------------------------------------------------------------------- 1 | Set if the message is displayed as HTML, sanitized HTML (all the possible nasties removed) or as plain text. -------------------------------------------------------------------------------- /data/html-mode/image: -------------------------------------------------------------------------------- 1 | layout-add.png 2 | layout-delete.png [activated="1"] 3 | layout-code.png [activated="2"] 4 | layout-error.png [activated="3"] -------------------------------------------------------------------------------- /data/image-toggle/image: -------------------------------------------------------------------------------- 1 | image.png 2 | image-delete.png [activated="2"] 3 | image-key.png [activated="3"] -------------------------------------------------------------------------------- /data/image-toggle/preferences: -------------------------------------------------------------------------------- 1 | do.reload:false -------------------------------------------------------------------------------- /data/import/button.js: -------------------------------------------------------------------------------- 1 | openMigrateWindow: function(event) { 2 | var win = event.target.ownerDocument.defaultView; 3 | win.openDialog("chrome://browser/content/migration/migration.xul", 4 | "Browser:MigrationWizard", "", null); 5 | } -------------------------------------------------------------------------------- /data/import/calendar.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/import/description: -------------------------------------------------------------------------------- 1 | Import settings and data from another application. -------------------------------------------------------------------------------- /data/import/image: -------------------------------------------------------------------------------- 1 | wrench-go.png -------------------------------------------------------------------------------- /data/import/messenger.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/import/portal.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/inspecter/description: -------------------------------------------------------------------------------- 1 | Open the DOM (Document Object Model) Inspector to view and manipulate the DOM tree. -------------------------------------------------------------------------------- /data/inspecter/image: -------------------------------------------------------------------------------- 1 | page-magnify.png -------------------------------------------------------------------------------- /data/installaddons/image: -------------------------------------------------------------------------------- 1 | plugin-add.png -------------------------------------------------------------------------------- /data/installaddons/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/installaddons/legacy -------------------------------------------------------------------------------- /data/installaddons/preferences: -------------------------------------------------------------------------------- 1 | restart:false -------------------------------------------------------------------------------- /data/java-toggle/description: -------------------------------------------------------------------------------- 1 | Toggle Java between enabled and disabled. -------------------------------------------------------------------------------- /data/java-toggle/image: -------------------------------------------------------------------------------- 1 | cup-delete.png 2 | cup-add.png [activated="true"] -------------------------------------------------------------------------------- /data/java-toggle/preferences: -------------------------------------------------------------------------------- 1 | do.reload:false -------------------------------------------------------------------------------- /data/javaScriptConsole/image: -------------------------------------------------------------------------------- 1 | application-error.png -------------------------------------------------------------------------------- /data/javaScriptConsole/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/javaScriptConsole/legacy -------------------------------------------------------------------------------- /data/javaScriptConsole/preferences: -------------------------------------------------------------------------------- 1 | javascript.console.open:0 -------------------------------------------------------------------------------- /data/javascript-toggle/description: -------------------------------------------------------------------------------- 1 | Enable or disable JavaScript. Means you keep keep it disabled most of the time and only turn it back on when you really need it. -------------------------------------------------------------------------------- /data/javascript-toggle/image: -------------------------------------------------------------------------------- 1 | script-delete.png 2 | script-add.png [activated="true"] -------------------------------------------------------------------------------- /data/javascript-toggle/preferences: -------------------------------------------------------------------------------- 1 | do.reload:false -------------------------------------------------------------------------------- /data/label-all-blank/description: -------------------------------------------------------------------------------- 1 | Remove the labels from all of the currently open tabs. -------------------------------------------------------------------------------- /data/label-all-blank/image: -------------------------------------------------------------------------------- 1 | tabs-label.png -------------------------------------------------------------------------------- /data/label-all-blank/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/label-all-blank/legacy -------------------------------------------------------------------------------- /data/label-blank/browser.js: -------------------------------------------------------------------------------- 1 | renameTabBlank: function(event) { 2 | var win = event.target.ownerDocument.defaultView; 3 | var thisTab = win.getBrowser().selectedTab; 4 | thisTab.label = ""; 5 | thisTab.removeAttribute("image"); 6 | } -------------------------------------------------------------------------------- /data/label-blank/description: -------------------------------------------------------------------------------- 1 | Remove the label and icon from the current tab. -------------------------------------------------------------------------------- /data/label-blank/image: -------------------------------------------------------------------------------- 1 | tab-label.png -------------------------------------------------------------------------------- /data/label-blank/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/label-blank/legacy -------------------------------------------------------------------------------- /data/link-open/description: -------------------------------------------------------------------------------- 1 | Change the setting that controls how other applications or JavaScript open new windows. Buttons icons indicate what setting is in use. -------------------------------------------------------------------------------- /data/link-open/image: -------------------------------------------------------------------------------- 1 | tab-link.png 2 | link-go.png [activated="1"] 3 | application-link.png [activated="2"] -------------------------------------------------------------------------------- /data/link-open/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/link-open/legacy -------------------------------------------------------------------------------- /data/min-font-size/description: -------------------------------------------------------------------------------- 1 | Set a minimum font size that web sites can use. Prevents a web site using a font that is smaller than what you are able to read. -------------------------------------------------------------------------------- /data/min-font-size/image: -------------------------------------------------------------------------------- 1 | font-enlarge.png 2 | font-shrink.png [activated="0"] -------------------------------------------------------------------------------- /data/min-font-size/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/min-font-size/legacy -------------------------------------------------------------------------------- /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-pane/description: -------------------------------------------------------------------------------- 1 | Show/Hide the Message Pane. -------------------------------------------------------------------------------- /data/msg-pane/image: -------------------------------------------------------------------------------- 1 | application-split.png -------------------------------------------------------------------------------- /data/msg-pane/mail.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/description: -------------------------------------------------------------------------------- 1 | Change the currently focused tab to the next one. -------------------------------------------------------------------------------- /data/next-tab/image: -------------------------------------------------------------------------------- 1 | tab-next.png -------------------------------------------------------------------------------- /data/open-current-frame/description: -------------------------------------------------------------------------------- 1 | Show only the currently selected frame. -------------------------------------------------------------------------------- /data/open-current-frame/image: -------------------------------------------------------------------------------- 1 | layout-content.png 2 | *layout-content.png [disabled="true"] -------------------------------------------------------------------------------- /data/page-source/description: -------------------------------------------------------------------------------- 1 | View the page or message source code. -------------------------------------------------------------------------------- /data/page-source/image: -------------------------------------------------------------------------------- 1 | page-code.png -------------------------------------------------------------------------------- /data/pageinfo/description: -------------------------------------------------------------------------------- 1 | Open the Page Info window to find out extra information about the current web page. -------------------------------------------------------------------------------- /data/pageinfo/image: -------------------------------------------------------------------------------- 1 | page-information.png -------------------------------------------------------------------------------- /data/pagesetup/button.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/pagesetup/description: -------------------------------------------------------------------------------- 1 | Define margins, orientation, and set up how the page is printed. -------------------------------------------------------------------------------- /data/pagesetup/image: -------------------------------------------------------------------------------- 1 | page-printer.png -------------------------------------------------------------------------------- /data/pagesetup/suite_browser.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/paypal/description: -------------------------------------------------------------------------------- 1 | Go to the PayPal web site. -------------------------------------------------------------------------------- /data/paypal/image: -------------------------------------------------------------------------------- 1 | paypal.png -------------------------------------------------------------------------------- /data/paypal/preferences: -------------------------------------------------------------------------------- 1 | url.paypal:"https://www.paypal.com/" 2 | always.new.tab:false -------------------------------------------------------------------------------- /data/personal-bookmarks-menu-button/description: -------------------------------------------------------------------------------- 1 | Show the contents of the Bookmarks Toolbar in a drop down menu. 2 | 3 | This compresses the bookmark menu into one button that you can put on any toolbar you want to. -------------------------------------------------------------------------------- /data/personal-bookmarks-menu-button/image: -------------------------------------------------------------------------------- 1 | toolbar-bookmark.png -------------------------------------------------------------------------------- /data/plainpaste/compose.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/plainpaste/description: -------------------------------------------------------------------------------- 1 | Paste text into Thunderbird without any formatting. -------------------------------------------------------------------------------- /data/plainpaste/image: -------------------------------------------------------------------------------- 1 | paste-plain.png 2 | *paste-plain.png [disabled="true"] -------------------------------------------------------------------------------- /data/preferences/browser.js: -------------------------------------------------------------------------------- 1 | openOptionsTab: function(event) { 2 | toolbar_buttons.openPageTab('chrome://browser/content/preferences/preferences.xul', event); 3 | } -------------------------------------------------------------------------------- /data/preferences/image: -------------------------------------------------------------------------------- 1 | options-wrench.png -------------------------------------------------------------------------------- /data/preferences/key: -------------------------------------------------------------------------------- 1 | O:alt -------------------------------------------------------------------------------- /data/preferences/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/preferences/legacy -------------------------------------------------------------------------------- /data/preferences/messenger.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/previous-tab/description: -------------------------------------------------------------------------------- 1 | Change the currently focused tab to the one before the one you a viewing now. -------------------------------------------------------------------------------- /data/previous-tab/image: -------------------------------------------------------------------------------- 1 | tab-previous.png -------------------------------------------------------------------------------- /data/print-preview/background.js: -------------------------------------------------------------------------------- 1 | browser.browserAction.onClicked.addListener(function(tab) { 2 | browser.tabs.printPreview(); 3 | }); -------------------------------------------------------------------------------- /data/print-preview/image: -------------------------------------------------------------------------------- 1 | printer-magnify.png -------------------------------------------------------------------------------- /data/profile-folder/image: -------------------------------------------------------------------------------- 1 | folder-user.png -------------------------------------------------------------------------------- /data/profile-folder/key: -------------------------------------------------------------------------------- 1 | P:accel,alt -------------------------------------------------------------------------------- /data/profile-folder/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/profile-folder/legacy -------------------------------------------------------------------------------- /data/profile-folder/preferences: -------------------------------------------------------------------------------- 1 | menupopup.hide.profile-folder:true -------------------------------------------------------------------------------- /data/profile-folder/strings: -------------------------------------------------------------------------------- 1 | profile-folder.label.option.label=Do not show a list of profiles on the Profile Folder button. -------------------------------------------------------------------------------- /data/purge/description: -------------------------------------------------------------------------------- 1 | Delete all junk emails then compact all folders. Quick way to do both at the same time. -------------------------------------------------------------------------------- /data/purge/image: -------------------------------------------------------------------------------- 1 | bin-brush.png -------------------------------------------------------------------------------- /data/read-mail/description: -------------------------------------------------------------------------------- 1 | Launch your default Email program from within Firefox. -------------------------------------------------------------------------------- /data/read-mail/image: -------------------------------------------------------------------------------- 1 | email.png -------------------------------------------------------------------------------- /data/read-mail/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/read-mail/legacy -------------------------------------------------------------------------------- /data/read-mail/preferences: -------------------------------------------------------------------------------- 1 | readmail.path:'' -------------------------------------------------------------------------------- /data/read-news/description: -------------------------------------------------------------------------------- 1 | Launch your default News program from within Firefox. -------------------------------------------------------------------------------- /data/read-news/image: -------------------------------------------------------------------------------- 1 | newspaper.png -------------------------------------------------------------------------------- /data/read-news/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/read-news/legacy -------------------------------------------------------------------------------- /data/read-news/preferences: -------------------------------------------------------------------------------- 1 | readnews.path:'' -------------------------------------------------------------------------------- /data/realNextMessage/description: -------------------------------------------------------------------------------- 1 | Get the next message. Unlink the default Thunderbird buttons this just go to the next in the list, or if shift is pressed, the next unread. -------------------------------------------------------------------------------- /data/realNextMessage/image: -------------------------------------------------------------------------------- 1 | arrow-forward.png -------------------------------------------------------------------------------- /data/realNextMessage/messenger.js: -------------------------------------------------------------------------------- 1 | realNextMessage: function(event) { 2 | var prefs = toolbar_buttons.interfaces.ExtensionPrefBranch; 3 | toolbar_buttons.realNavigate(event, prefs.getBoolPref("next"), true); 4 | } -------------------------------------------------------------------------------- /data/realNextMessage/preferences: -------------------------------------------------------------------------------- 1 | next:true -------------------------------------------------------------------------------- /data/realPreviousMessage/description: -------------------------------------------------------------------------------- 1 | Get the previous message. Unlink the default Thunderbird buttons this just go to the previous in the list, or if shift is pressed, the previous unread. -------------------------------------------------------------------------------- /data/realPreviousMessage/image: -------------------------------------------------------------------------------- 1 | arrow-back.png -------------------------------------------------------------------------------- /data/realPreviousMessage/messenger.js: -------------------------------------------------------------------------------- 1 | realPreviousMessage: function(event) { 2 | var prefs = toolbar_buttons.interfaces.ExtensionPrefBranch; 3 | toolbar_buttons.realNavigate(event, !prefs.getBoolPref("next"), true); 4 | } 5 | -------------------------------------------------------------------------------- /data/realPreviousMessage/preferences: -------------------------------------------------------------------------------- 1 | next:true -------------------------------------------------------------------------------- /data/redo/button.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/redo/description: -------------------------------------------------------------------------------- 1 | Redo the late change. -------------------------------------------------------------------------------- /data/redo/image: -------------------------------------------------------------------------------- 1 | redo.png 2 | *redo.png [disabled="true"] -------------------------------------------------------------------------------- /data/redo/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/redo/legacy -------------------------------------------------------------------------------- /data/redo/mail-address-book.xul: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /data/reduce/description: -------------------------------------------------------------------------------- 1 | Reduce the text size so it is not so big. -------------------------------------------------------------------------------- /data/reduce/image: -------------------------------------------------------------------------------- 1 | magnifier-zoom-out.png -------------------------------------------------------------------------------- /data/reduce/mail-header.xul: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /data/reduce/mail.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/reduce/read.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/reload-all-tabs/description: -------------------------------------------------------------------------------- 1 | Reload all open tabs. -------------------------------------------------------------------------------- /data/reload-all-tabs/image: -------------------------------------------------------------------------------- 1 | tabs-refresh.png -------------------------------------------------------------------------------- /data/reload-all-tabs/strings: -------------------------------------------------------------------------------- 1 | tbReloadAllTabsBypassCache=Skip the cache when reloading tabs. -------------------------------------------------------------------------------- /data/reload-proxy/description: -------------------------------------------------------------------------------- 1 | Reload the currently in use proxy. -------------------------------------------------------------------------------- /data/reload-proxy/image: -------------------------------------------------------------------------------- 1 | world-network.png 2 | *world-network.png [disabled="true"] -------------------------------------------------------------------------------- /data/reload-skip-cache/background.js: -------------------------------------------------------------------------------- 1 | function reloadSkipCache() { 2 | browser.tabs.reload({bypassCache: true}); 3 | } 4 | 5 | browser.browserAction.onClicked.addListener(reloadSkipCache); -------------------------------------------------------------------------------- /data/reload-skip-cache/description: -------------------------------------------------------------------------------- 1 | Reload page without using content stored in the browser cache to make sure you get any updates. -------------------------------------------------------------------------------- /data/reload-skip-cache/image: -------------------------------------------------------------------------------- 1 | arrow-rotate-clockwise-270.png 2 | *arrow-rotate-clockwise-270.png [disabled=true] 3 | arrow-rotate-clockwise-270.png $#urlbar #reload-skip-cache-extra-ui -------------------------------------------------------------------------------- /data/rename-tab/description: -------------------------------------------------------------------------------- 1 | Rename the Currently Selected Tab. -------------------------------------------------------------------------------- /data/rename-tab/image: -------------------------------------------------------------------------------- 1 | tab-edit.png -------------------------------------------------------------------------------- /data/rename-tab/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/rename-tab/legacy -------------------------------------------------------------------------------- /data/reply-sender/description: -------------------------------------------------------------------------------- 1 | Reply only to the sender of the email. -------------------------------------------------------------------------------- /data/reply-sender/image: -------------------------------------------------------------------------------- 1 | email-user.png -------------------------------------------------------------------------------- /data/reset/description: -------------------------------------------------------------------------------- 1 | Reset Text Size to the default setting. -------------------------------------------------------------------------------- /data/reset/image: -------------------------------------------------------------------------------- 1 | magnifier.png -------------------------------------------------------------------------------- /data/reset/mail-header.xul: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /data/reset/mail.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/reset/read.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/restart-app/image: -------------------------------------------------------------------------------- 1 | arrow-recycle.png -------------------------------------------------------------------------------- /data/restart-app/key: -------------------------------------------------------------------------------- 1 | R:accel,alt -------------------------------------------------------------------------------- /data/restart-app/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/restart-app/legacy -------------------------------------------------------------------------------- /data/restart-app/preferences: -------------------------------------------------------------------------------- 1 | restart:false -------------------------------------------------------------------------------- /data/return-receipt/description: -------------------------------------------------------------------------------- 1 | Toggle the sending of a return receipt on and off. -------------------------------------------------------------------------------- /data/return-receipt/image: -------------------------------------------------------------------------------- 1 | receipt-delete.png 2 | receipt-add.png [checked="true"] -------------------------------------------------------------------------------- /data/save-frame/description: -------------------------------------------------------------------------------- 1 | Save a frame from the current document. -------------------------------------------------------------------------------- /data/save-frame/image: -------------------------------------------------------------------------------- 1 | layout-disk.png -------------------------------------------------------------------------------- /data/saveas/browser.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/saveas/compose.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/saveas/image: -------------------------------------------------------------------------------- 1 | disk.png -------------------------------------------------------------------------------- /data/saveas/mail.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/saveas/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "default_title": "saveas.label", 3 | "name": "saveas.tooltip", 4 | "permissions": ["tabs", "downloads"] 5 | } -------------------------------------------------------------------------------- /data/saveas/read.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/search-addresses/description: -------------------------------------------------------------------------------- 1 | Open the advanced address search window. -------------------------------------------------------------------------------- /data/search-addresses/image: -------------------------------------------------------------------------------- 1 | book-addresses-find.png -------------------------------------------------------------------------------- /data/search-messages/description: -------------------------------------------------------------------------------- 1 | Open the advanced message search window to find an email. -------------------------------------------------------------------------------- /data/search-messages/image: -------------------------------------------------------------------------------- 1 | email-find.png -------------------------------------------------------------------------------- /data/select-all/description: -------------------------------------------------------------------------------- 1 | Select all the text in the current text box, web page, etc. -------------------------------------------------------------------------------- /data/select-all/image: -------------------------------------------------------------------------------- 1 | page-white-select-all.png -------------------------------------------------------------------------------- /data/select-all/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/select-all/legacy -------------------------------------------------------------------------------- /data/send-link/browser.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/send-link/description: -------------------------------------------------------------------------------- 1 | Send Page Link in an Email. -------------------------------------------------------------------------------- /data/send-link/image: -------------------------------------------------------------------------------- 1 | link-go.png -------------------------------------------------------------------------------- /data/send-link/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/send-link/legacy -------------------------------------------------------------------------------- /data/send-receive/description: -------------------------------------------------------------------------------- 1 | Send all messages in the outbox and get all new messages. -------------------------------------------------------------------------------- /data/send-receive/image: -------------------------------------------------------------------------------- 1 | email-left-right.png -------------------------------------------------------------------------------- /data/send-with-no-save/description: -------------------------------------------------------------------------------- 1 | Send message with out saving a copy to the sent folder. If you want this as the permanent behaviour, there is an option in account settings under 'Copies & Folders' -------------------------------------------------------------------------------- /data/send-with-no-save/image: -------------------------------------------------------------------------------- 1 | email-go-yellow.png -------------------------------------------------------------------------------- /data/shift-delete/description: -------------------------------------------------------------------------------- 1 | Delete a message with out sending it to the Trash. This will completely remove the message so that it can not be recovered. -------------------------------------------------------------------------------- /data/shift-delete/image: -------------------------------------------------------------------------------- 1 | bin-alert.png -------------------------------------------------------------------------------- /data/show-frame/description: -------------------------------------------------------------------------------- 1 | Show only the currently selected frame. -------------------------------------------------------------------------------- /data/show-frame/image: -------------------------------------------------------------------------------- 1 | layout-content.png 2 | *layout-content.png [disabled="true"] 3 | -------------------------------------------------------------------------------- /data/snap-back/description: -------------------------------------------------------------------------------- 1 | Go back to the very first page that was opened in the current tab. -------------------------------------------------------------------------------- /data/snap-back/image: -------------------------------------------------------------------------------- 1 | arrow-back-double.png -------------------------------------------------------------------------------- /data/statusbar-toggle/description: -------------------------------------------------------------------------------- 1 | Toggle the status bar from hidden to shown. Hide it to get the most out of your screen space, and show it when it really needed. -------------------------------------------------------------------------------- /data/statusbar-toggle/image: -------------------------------------------------------------------------------- 1 | application.png 2 | application-statusbar.png [activated="false"] -------------------------------------------------------------------------------- /data/statusbar-toggle/key: -------------------------------------------------------------------------------- 1 | /:accel -------------------------------------------------------------------------------- /data/statusbar-toggle/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/statusbar-toggle/legacy -------------------------------------------------------------------------------- /data/statusbar-toggle/modules: -------------------------------------------------------------------------------- 1 | resource://modules/CustomizableUI.jsm -------------------------------------------------------------------------------- /data/statusbar-toggle/preferences: -------------------------------------------------------------------------------- 1 | statusbar-toggle.collapsed:true -------------------------------------------------------------------------------- /data/statusbar-toggle/suite_browser.js: -------------------------------------------------------------------------------- 1 | toolbar_buttons.loadToggleToolbar(document, "statusbar-toggle", "status-bar"); -------------------------------------------------------------------------------- /data/stop-all/browser.js: -------------------------------------------------------------------------------- 1 | stopAll: function(event) { 2 | var win = event.target.ownerDocument.defaultView; 3 | for (var i = 0; i < win.gBrowser.mTabContainer.childNodes.length; i++) { 4 | win.gBrowser.browsers[i].stop(); 5 | } 6 | } -------------------------------------------------------------------------------- /data/stop-all/description: -------------------------------------------------------------------------------- 1 | Stop all tabs from loading when you have mass opened tabs and found the one you really wanted. -------------------------------------------------------------------------------- /data/stop-all/image: -------------------------------------------------------------------------------- 1 | tabs-stop.png -------------------------------------------------------------------------------- /data/stop-animation/description: -------------------------------------------------------------------------------- 1 | Stop annoying animated GIF's, and some blinking or scrolling text. -------------------------------------------------------------------------------- /data/stop-animation/image: -------------------------------------------------------------------------------- 1 | page-white-film.png 2 | -page-white-film.png [activated="false"] -------------------------------------------------------------------------------- /data/stop-animation/preferences: -------------------------------------------------------------------------------- 1 | marquee:true -------------------------------------------------------------------------------- /data/stop-cookies/image: -------------------------------------------------------------------------------- 1 | cookie-add.png 2 | cookie-error.png [activated="1"] 3 | cookie-delete.png [activated="2"] 4 | cookie-key.png [activated="3"] -------------------------------------------------------------------------------- /data/stop-cookies/preferences: -------------------------------------------------------------------------------- 1 | delete.cookies.check:true -------------------------------------------------------------------------------- /data/stop-dynamic-content/browser.js: -------------------------------------------------------------------------------- 1 | toolbar_buttons.loadContectBlocker(document, "{{pref_root}}enable_all", "enable_all", 2 | "stop-dynamic-content", "chrome://{{chrome_name}}/content/files/dcontent.css"); 3 | -------------------------------------------------------------------------------- /data/stop-dynamic-content/description: -------------------------------------------------------------------------------- 1 | Stop movies, Flash, Java or any other plug-ins from loading their content. -------------------------------------------------------------------------------- /data/stop-dynamic-content/file_list: -------------------------------------------------------------------------------- 1 | block.xml 2 | -------------------------------------------------------------------------------- /data/stop-dynamic-content/image: -------------------------------------------------------------------------------- 1 | page-white-world.png 2 | -page-white-world.png [activated="false"] -------------------------------------------------------------------------------- /data/stop-dynamic-content/preferences: -------------------------------------------------------------------------------- 1 | enable_all:true -------------------------------------------------------------------------------- /data/stop-dynamic-content/res_list: -------------------------------------------------------------------------------- 1 | block.png 2 | play.png 3 | -------------------------------------------------------------------------------- /data/stop-flash/browser.js: -------------------------------------------------------------------------------- 1 | toolbar_buttons.loadContectBlocker(document, "{{pref_root}}flash", "flash", 2 | "stop-flash", "chrome://{{chrome_name}}/content/files/flash.css"); 3 | -------------------------------------------------------------------------------- /data/stop-flash/description: -------------------------------------------------------------------------------- 1 | Stop Flash from annoying you. -------------------------------------------------------------------------------- /data/stop-flash/file_list: -------------------------------------------------------------------------------- 1 | block.xml 2 | -------------------------------------------------------------------------------- /data/stop-flash/image: -------------------------------------------------------------------------------- 1 | page-white-flash.png 2 | -page-white-flash.png [activated="false"] -------------------------------------------------------------------------------- /data/stop-flash/preferences: -------------------------------------------------------------------------------- 1 | flash:true -------------------------------------------------------------------------------- /data/stop-flash/res_list: -------------------------------------------------------------------------------- 1 | block.png 2 | play.png 3 | -------------------------------------------------------------------------------- /data/stop-iframe/browser.js: -------------------------------------------------------------------------------- 1 | toolbar_buttons.loadContectBlocker(document, "{{pref_root}}iframe", "iframe", 2 | "stop-iframe", "chrome://{{chrome_name}}/content/files/iframe.css"); 3 | -------------------------------------------------------------------------------- /data/stop-iframe/description: -------------------------------------------------------------------------------- 1 | Stop iframes from loading and the ads they often contain -------------------------------------------------------------------------------- /data/stop-iframe/file_list: -------------------------------------------------------------------------------- 1 | block.xml 2 | -------------------------------------------------------------------------------- /data/stop-iframe/image: -------------------------------------------------------------------------------- 1 | layout-sidebar.png 2 | -layout-sidebar.png [activated="false"] -------------------------------------------------------------------------------- /data/stop-iframe/preferences: -------------------------------------------------------------------------------- 1 | iframe:true -------------------------------------------------------------------------------- /data/stop-iframe/res_list: -------------------------------------------------------------------------------- 1 | block.png 2 | play.png 3 | -------------------------------------------------------------------------------- /data/stop-movies/browser.js: -------------------------------------------------------------------------------- 1 | toolbar_buttons.loadContectBlocker(document, "{{pref_root}}movies", "movies", 2 | "stop-movies", "chrome://{{chrome_name}}/content/files/movies.css"); 3 | -------------------------------------------------------------------------------- /data/stop-movies/description: -------------------------------------------------------------------------------- 1 | Stop movies from loading. -------------------------------------------------------------------------------- /data/stop-movies/file_list: -------------------------------------------------------------------------------- 1 | block.xml 2 | -------------------------------------------------------------------------------- /data/stop-movies/image: -------------------------------------------------------------------------------- 1 | film.png 2 | -film.png [activated="false"] -------------------------------------------------------------------------------- /data/stop-movies/preferences: -------------------------------------------------------------------------------- 1 | movies:true -------------------------------------------------------------------------------- /data/stop-movies/res_list: -------------------------------------------------------------------------------- 1 | block.png 2 | play.png 3 | -------------------------------------------------------------------------------- /data/tab-list/description: -------------------------------------------------------------------------------- 1 | When you have lots of tabs open, it is good to have another way of selecting one. -------------------------------------------------------------------------------- /data/tab-list/image: -------------------------------------------------------------------------------- 1 | tabs.png -------------------------------------------------------------------------------- /data/tab-list/todo: -------------------------------------------------------------------------------- 1 | Add close button on the right 2 | Also add an arrow that allows for opening something like a context menu (really just changing the panel). -------------------------------------------------------------------------------- /data/tasks-in-view/calendar.js: -------------------------------------------------------------------------------- 1 | tasksInView: function(event { 2 | var win = event.target.ownerDocument.defaultView; 3 | try { 4 | win.changeDisplayToDoInViewCheckbox(); 5 | } catch(e) { 6 | win.toggleTasksInView(); 7 | } 8 | } -------------------------------------------------------------------------------- /data/tasks-in-view/description: -------------------------------------------------------------------------------- 1 | Toggle the Task in View panel in Sunbird. -------------------------------------------------------------------------------- /data/tasks-in-view/image: -------------------------------------------------------------------------------- 1 | task-magnify.png -------------------------------------------------------------------------------- /data/tasks-toggle/calendar.js: -------------------------------------------------------------------------------- 1 | toggleTasks: function(event) { 2 | try { 3 | return toolbar_buttons.toggleToolbar(event, 'taskBox'); 4 | } catch(e) { 5 | return toolbar_buttons.toggleToolbar(event, 'todo-tab-panel'); 6 | } 7 | } -------------------------------------------------------------------------------- /data/tasks-toggle/description: -------------------------------------------------------------------------------- 1 | Toggle the task bar between visible and hidden. -------------------------------------------------------------------------------- /data/tasks-toggle/image: -------------------------------------------------------------------------------- 1 | task.png -------------------------------------------------------------------------------- /data/tb-about-about/description: -------------------------------------------------------------------------------- 1 | Lists all the "about" pages so that they can be opened. -------------------------------------------------------------------------------- /data/tb-about-about/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-about-about/legacy -------------------------------------------------------------------------------- /data/tb-about-about/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false -------------------------------------------------------------------------------- /data/tb-about-about/strings: -------------------------------------------------------------------------------- 1 | tb-about-about.label=about:about 2 | tb-about-about.tooltip=List and open any of the about pages -------------------------------------------------------------------------------- /data/tb-about-blank/description: -------------------------------------------------------------------------------- 1 | Open about:blank, which effectively just clears the contents of the current tab. -------------------------------------------------------------------------------- /data/tb-about-blank/image: -------------------------------------------------------------------------------- 1 | page-white.png -------------------------------------------------------------------------------- /data/tb-about-blank/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false -------------------------------------------------------------------------------- /data/tb-about-blank/strings: -------------------------------------------------------------------------------- 1 | tb-about-blank.label=Clear Tab 2 | tb-about-blank.tooltip=Open/Load an empty tab -------------------------------------------------------------------------------- /data/tb-all-menus/description: -------------------------------------------------------------------------------- 1 | Show all the menus in a single menu. -------------------------------------------------------------------------------- /data/tb-all-menus/key: -------------------------------------------------------------------------------- 1 | M:alt -------------------------------------------------------------------------------- /data/tb-all-menus/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-all-menus/legacy -------------------------------------------------------------------------------- /data/tb-all-menus/preferences: -------------------------------------------------------------------------------- 1 | all-menus.icons:true 2 | all-menus.settings:true -------------------------------------------------------------------------------- /data/tb-all-menus/style.css: -------------------------------------------------------------------------------- 1 | #all-menus-panels treechildren::-moz-tree-checkbox(checked) { 2 | list-style-image: url("chrome://global/skin/checkbox/cbox-check.gif"); 3 | } -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-check-for-update/legacy -------------------------------------------------------------------------------- /data/tb-clear-cache/description: -------------------------------------------------------------------------------- 1 | Clears the browser cache and other selected storage. -------------------------------------------------------------------------------- /data/tb-clear-cache/image: -------------------------------------------------------------------------------- 1 | backspace.png -------------------------------------------------------------------------------- /data/tb-clear-cache/key: -------------------------------------------------------------------------------- 1 | VKBACKSPACE:accel,shift -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-clear-search/legacy -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-clear-url/legacy -------------------------------------------------------------------------------- /data/tb-clone-tab/browser.js: -------------------------------------------------------------------------------- 1 | cloneTab: function(event) { 2 | var win = event.target.ownerDocument.defaultView; 3 | win.gBrowser.duplicateTab(win.gBrowser.selectedTab); 4 | } 5 | -------------------------------------------------------------------------------- /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/description: -------------------------------------------------------------------------------- 1 | Opens the cookie manager for the current web page. On middle click opens in a new tab. 2 | -------------------------------------------------------------------------------- /data/tb-cookie-manager/image: -------------------------------------------------------------------------------- 1 | cookie.png 2 | -------------------------------------------------------------------------------- /data/tb-cookie-manager/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-cookie-manager/legacy -------------------------------------------------------------------------------- /data/tb-download-sync/description: -------------------------------------------------------------------------------- 1 | Runs the download and sync now tool, so that messages can be used when you go offline. -------------------------------------------------------------------------------- /data/tb-download-sync/image: -------------------------------------------------------------------------------- 1 | inbox-down.png -------------------------------------------------------------------------------- /data/tb-download-sync/strings: -------------------------------------------------------------------------------- 1 | tb-download-sync.label=Download/Sync Now 2 | tb-download-sync.tooltip=Run download and sync before going offline -------------------------------------------------------------------------------- /data/tb-edit-menu/description: -------------------------------------------------------------------------------- 1 | Show the edit menu. -------------------------------------------------------------------------------- /data/tb-edit-menu/image: -------------------------------------------------------------------------------- 1 | menu-edit.png -------------------------------------------------------------------------------- /data/tb-edit-menu/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-edit-menu/legacy -------------------------------------------------------------------------------- /data/tb-file-menu/description: -------------------------------------------------------------------------------- 1 | Show the file menu. -------------------------------------------------------------------------------- /data/tb-file-menu/image: -------------------------------------------------------------------------------- 1 | menu-page.png -------------------------------------------------------------------------------- /data/tb-file-menu/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-file-menu/legacy -------------------------------------------------------------------------------- /data/tb-history-menu/description: -------------------------------------------------------------------------------- 1 | Show the history menu. -------------------------------------------------------------------------------- /data/tb-history-menu/image: -------------------------------------------------------------------------------- 1 | menu-time.png -------------------------------------------------------------------------------- /data/tb-history-menu/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-history-menu/legacy -------------------------------------------------------------------------------- /data/tb-history-menu/strings: -------------------------------------------------------------------------------- 1 | tb-history-menu.label=History 2 | tb-history-menu.tooltip=Open History Menu -------------------------------------------------------------------------------- /data/tb-new-event/description: -------------------------------------------------------------------------------- 1 | Add a new event into the calendar. -------------------------------------------------------------------------------- /data/tb-new-event/image: -------------------------------------------------------------------------------- 1 | calendar-add.png 2 | *calendar-add.png [disabled="true"] -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | tb-new-tab.label=New Tab 2 | tb-new-tab.tooltip=Open a new browser tab -------------------------------------------------------------------------------- /data/tb-new-task/description: -------------------------------------------------------------------------------- 1 | Add a new task to the calendar. -------------------------------------------------------------------------------- /data/tb-new-task/image: -------------------------------------------------------------------------------- 1 | task-add.png 2 | *task-add.png [disabled="true"] -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-open/description: -------------------------------------------------------------------------------- 1 | Open a file stored on your local hard drive. Can be used to install extensions or themes. -------------------------------------------------------------------------------- /data/tb-open/image: -------------------------------------------------------------------------------- 1 | folder-open.png -------------------------------------------------------------------------------- /data/tb-open/mail.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-page-info-media/description: -------------------------------------------------------------------------------- 1 | Show the page info window with the media tab open. -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | arrow-rotate-clockwise-225.png 2 | *arrow-rotate-clockwise-225.png [disabled="true"] -------------------------------------------------------------------------------- /data/tb-page-reload/strings: -------------------------------------------------------------------------------- 1 | tb-page-reload.label=Reload 2 | tb-page-reload.tooltip=Reload the current page -------------------------------------------------------------------------------- /data/tb-page-stop/description: -------------------------------------------------------------------------------- 1 | Stops the current page from continuing to load. -------------------------------------------------------------------------------- /data/tb-page-stop/image: -------------------------------------------------------------------------------- 1 | stop.png 2 | *stop.png [disabled="true"] -------------------------------------------------------------------------------- /data/tb-page-stop/portal.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tb-page-stop/strings: -------------------------------------------------------------------------------- 1 | tb-page-stop.label=Stop 2 | tb-page-stop.tooltip=Stop the page loading -------------------------------------------------------------------------------- /data/tb-print-page/description: -------------------------------------------------------------------------------- 1 | Print the current page. 2 | -------------------------------------------------------------------------------- /data/tb-print-page/image: -------------------------------------------------------------------------------- 1 | printer.png 2 | *printer.png [disabled="true"] 3 | -------------------------------------------------------------------------------- /data/tb-print-page/strings: -------------------------------------------------------------------------------- 1 | tb-print-page.label=Print 2 | tb-print-page.tooltip=Print this page -------------------------------------------------------------------------------- /data/tb-saved-passwords/description: -------------------------------------------------------------------------------- 1 | Opens the password manager to view saved passwords 2 | -------------------------------------------------------------------------------- /data/tb-saved-passwords/image: -------------------------------------------------------------------------------- 1 | key.png 2 | -------------------------------------------------------------------------------- /data/tb-saved-passwords/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-saved-passwords/legacy -------------------------------------------------------------------------------- /data/tb-saved-passwords/strings: -------------------------------------------------------------------------------- 1 | tb-saved-passwords.label=Passwords 2 | tb-saved-passwords.tooltip=Open Password Manager 3 | -------------------------------------------------------------------------------- /data/tb-search-go-button/description: -------------------------------------------------------------------------------- 1 | A separate button for doing a web search from the search toolbar. -------------------------------------------------------------------------------- /data/tb-search-go-button/image: -------------------------------------------------------------------------------- 1 | world-find.png -------------------------------------------------------------------------------- /data/tb-search-go-button/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-search-go-button/legacy -------------------------------------------------------------------------------- /data/tb-search-go-button/strings: -------------------------------------------------------------------------------- 1 | tb-search-go-button.label=Search Go 2 | tb-search-go-button.tooltip=Go do Web Search -------------------------------------------------------------------------------- /data/tb-search-minus/description: -------------------------------------------------------------------------------- 1 | Decreases the width of the searchbar by 10 pixles 2 | -------------------------------------------------------------------------------- /data/tb-search-minus/image: -------------------------------------------------------------------------------- 1 | textfield-smaller.png 2 | -------------------------------------------------------------------------------- /data/tb-search-minus/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-search-minus/legacy -------------------------------------------------------------------------------- /data/tb-search-minus/strings: -------------------------------------------------------------------------------- 1 | tb-search-minus.label=Decrease Searchbar Size 2 | tb-search-minus.tooltip=Decreases the width of the searchbar by 10 pixles -------------------------------------------------------------------------------- /data/tb-search-minus/style.css: -------------------------------------------------------------------------------- 1 | #search-container{ 2 | -moz-transition-property:max-width; 3 | -moz-transition-duration:0.5s; 4 | } -------------------------------------------------------------------------------- /data/tb-search-plus/description: -------------------------------------------------------------------------------- 1 | Increases the width of the searchbar by 10 pixles 2 | -------------------------------------------------------------------------------- /data/tb-search-plus/image: -------------------------------------------------------------------------------- 1 | textfield-bigger.png 2 | -------------------------------------------------------------------------------- /data/tb-search-plus/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-search-plus/legacy -------------------------------------------------------------------------------- /data/tb-search-plus/strings: -------------------------------------------------------------------------------- 1 | tb-search-plus.label=Increase Searchbar Size 2 | tb-search-plus.tooltip=Increases the width of the searchbar by 10 pixles -------------------------------------------------------------------------------- /data/tb-search-plus/style.css: -------------------------------------------------------------------------------- 1 | #search-container{ 2 | -moz-transition-property:max-width; 3 | -moz-transition-duration:0.5s; 4 | } -------------------------------------------------------------------------------- /data/tb-search-resize/description: -------------------------------------------------------------------------------- 1 | Resizes the width of the searchbar 2 | -------------------------------------------------------------------------------- /data/tb-search-resize/image: -------------------------------------------------------------------------------- 1 | textfield-resize.png 2 | -------------------------------------------------------------------------------- /data/tb-search-resize/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-search-resize/legacy -------------------------------------------------------------------------------- /data/tb-search-resize/strings: -------------------------------------------------------------------------------- 1 | tb-search-resize.label=Resize Searchbar 2 | tb-search-resize.tooltip=Changes the width of the searchbar -------------------------------------------------------------------------------- /data/tb-search-resize/style.css: -------------------------------------------------------------------------------- 1 | #search-container{ 2 | -moz-transition-property:max-width; 3 | -moz-transition-duration:0.5s; 4 | } -------------------------------------------------------------------------------- /data/tb-show-all-history/description: -------------------------------------------------------------------------------- 1 | Open the window showing all your browsing history. -------------------------------------------------------------------------------- /data/tb-show-all-history/image: -------------------------------------------------------------------------------- 1 | time.png -------------------------------------------------------------------------------- /data/tb-show-all-history/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-show-all-history/legacy -------------------------------------------------------------------------------- /data/tb-show-all-history/strings: -------------------------------------------------------------------------------- 1 | tb-show-all-history.label=Show All History 2 | tb-show-all-history.tooltip=Open the show all history window -------------------------------------------------------------------------------- /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/browser.js: -------------------------------------------------------------------------------- 1 | toolbar_buttons.loadToggleToolbar(document, "tb-toggle-menu-bar", "toolbar-menubar"); -------------------------------------------------------------------------------- /data/tb-toggle-menu-bar/compose.js: -------------------------------------------------------------------------------- 1 | toolbar_buttons.loadToggleToolbar(document, "tb-toggle-menu-bar", "compose-toolbar-menubar2"); -------------------------------------------------------------------------------- /data/tb-toggle-menu-bar/description: -------------------------------------------------------------------------------- 1 | Toggle the menu bar. Don't put this button on the menu bar! -------------------------------------------------------------------------------- /data/tb-toggle-menu-bar/image: -------------------------------------------------------------------------------- 1 | toolbar-menu.png 2 | -toolbar-menu.png [activated="true"] -------------------------------------------------------------------------------- /data/tb-toggle-menu-bar/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-toggle-menu-bar/legacy -------------------------------------------------------------------------------- /data/tb-toggle-menu-bar/mail.js: -------------------------------------------------------------------------------- 1 | toolbar_buttons.loadToggleToolbar(document, "tb-toggle-menu-bar", "mail-toolbar-menubar2"); -------------------------------------------------------------------------------- /data/tb-toggle-popup-blocker/description: -------------------------------------------------------------------------------- 1 | Toggle the popup blocker, so it can easily be deactivated as needed. Middle click opens the popup exceptions window. -------------------------------------------------------------------------------- /data/tb-toggle-popup-blocker/image: -------------------------------------------------------------------------------- 1 | application-delete.png 2 | application-add.png [activated="false"] -------------------------------------------------------------------------------- /data/tb-toggle-popup-blocker/key: -------------------------------------------------------------------------------- 1 | Q:accel,shift -------------------------------------------------------------------------------- /data/tb-toggle-popup-blocker/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-toggle-popup-blocker/legacy -------------------------------------------------------------------------------- /data/tb-tools-menu/description: -------------------------------------------------------------------------------- 1 | Show the tools menu. -------------------------------------------------------------------------------- /data/tb-tools-menu/image: -------------------------------------------------------------------------------- 1 | menu-wrench.png -------------------------------------------------------------------------------- /data/tb-tools-menu/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-tools-menu/legacy -------------------------------------------------------------------------------- /data/tb-twitter-button/description: -------------------------------------------------------------------------------- 1 | Open the Twitter website. The link can be changed using about:config. -------------------------------------------------------------------------------- /data/tb-twitter-button/image: -------------------------------------------------------------------------------- 1 | twitter.png -------------------------------------------------------------------------------- /data/tb-twitter-button/preferences: -------------------------------------------------------------------------------- 1 | url.twitter:"https://twitter.com/" 2 | always.new.tab:false -------------------------------------------------------------------------------- /data/tb-url-go-button/description: -------------------------------------------------------------------------------- 1 | Go to the current url in the address bar -------------------------------------------------------------------------------- /data/tb-url-go-button/image: -------------------------------------------------------------------------------- 1 | arrow-forward.png 2 | *arrow-forward.png [disabled="true"] -------------------------------------------------------------------------------- /data/tb-url-go-button/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-url-go-button/legacy -------------------------------------------------------------------------------- /data/tb-url-go-button/strings: -------------------------------------------------------------------------------- 1 | tb-url-go-button.label=Go 2 | tb-url-go-button.tooltip=Go to current address -------------------------------------------------------------------------------- /data/tb-view-menu/description: -------------------------------------------------------------------------------- 1 | Show the view menu. -------------------------------------------------------------------------------- /data/tb-view-menu/image: -------------------------------------------------------------------------------- 1 | menu-magnify.png -------------------------------------------------------------------------------- /data/tb-view-menu/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/tb-view-menu/legacy -------------------------------------------------------------------------------- /data/themes/description: -------------------------------------------------------------------------------- 1 | Open the themes manager to change you theme or install a new one. -------------------------------------------------------------------------------- /data/themes/image: -------------------------------------------------------------------------------- 1 | palette.png 2 | palette-add.png #tb-themes-install -------------------------------------------------------------------------------- /data/themes/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/themes/legacy -------------------------------------------------------------------------------- /data/thunderbird-extension/description: -------------------------------------------------------------------------------- 1 | Open addons.mozilla.org on the page to get more Thunderbird extensions. Link can be change using about:config if you prefer another site. -------------------------------------------------------------------------------- /data/thunderbird-extension/image: -------------------------------------------------------------------------------- 1 | thunderbird-addon.png -------------------------------------------------------------------------------- /data/thunderbird-extension/preferences: -------------------------------------------------------------------------------- 1 | url.thunderbird-ext:"https://addons.mozilla.org/thunderbird/extensions/" 2 | always.new.tab:false -------------------------------------------------------------------------------- /data/thunderbird-theme/description: -------------------------------------------------------------------------------- 1 | Open the Themes Manager to change your theme or install a new one. Only works in Firefox 1.5. Firefox 2 users should use the Add-ons Button. -------------------------------------------------------------------------------- /data/thunderbird-theme/image: -------------------------------------------------------------------------------- 1 | thunderbird-theme.png -------------------------------------------------------------------------------- /data/thunderbird-theme/preferences: -------------------------------------------------------------------------------- 1 | url.thunderbird-theme:"https://addons.mozilla.org/thunderbird/themes/" 2 | always.new.tab:false -------------------------------------------------------------------------------- /data/toggle-bookmark-toolbar/browser.js: -------------------------------------------------------------------------------- 1 | toolbar_buttons.loadToggleToolbar(document, "toggle-bookmark-toolbar", "PersonalToolbar"); -------------------------------------------------------------------------------- /data/toggle-bookmark-toolbar/description: -------------------------------------------------------------------------------- 1 | Show/Hide to Bookmark Toolbar. -------------------------------------------------------------------------------- /data/toggle-bookmark-toolbar/image: -------------------------------------------------------------------------------- 1 | toolbar-bookmark-delete.png 2 | toolbar-bookmark-add.png [activated="false"] -------------------------------------------------------------------------------- /data/toggle-bookmark-toolbar/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/toggle-bookmark-toolbar/legacy -------------------------------------------------------------------------------- /data/toggle-proxy/description: -------------------------------------------------------------------------------- 1 | Toggles the Proxy between on and off for quick changing of networks. -------------------------------------------------------------------------------- /data/toggle-proxy/image: -------------------------------------------------------------------------------- 1 | world-network-delete.png 2 | world-network-edit.png [activated="1"] 3 | world-network-lightning.png [activated="2"] 4 | world-network-wrench.png [activated="4"] 5 | world-network-gear.png [activated="5"] -------------------------------------------------------------------------------- /data/toggle-proxy/preferences: -------------------------------------------------------------------------------- 1 | toggle.proxy:1 2 | -------------------------------------------------------------------------------- /data/toggle-read/description: -------------------------------------------------------------------------------- 1 | Toggle the Read status of the currently selected message. -------------------------------------------------------------------------------- /data/toggle-read/image: -------------------------------------------------------------------------------- 1 | email-valid.png -------------------------------------------------------------------------------- /data/toggle-styles/description: -------------------------------------------------------------------------------- 1 | Toggle pages styles between showing the site's default and the browser defaults. -------------------------------------------------------------------------------- /data/toggle-styles/image: -------------------------------------------------------------------------------- 1 | css.png 2 | *css.png [activated="false"] -------------------------------------------------------------------------------- /data/toggle-toolbar/browser.js: -------------------------------------------------------------------------------- 1 | toolbar_buttons.loadToggleToolbar(document, "toggle-toolbar", "nav-bar"); -------------------------------------------------------------------------------- /data/toggle-toolbar/calendar.js: -------------------------------------------------------------------------------- 1 | toolbar_buttons.loadToggleToolbar(document, "toggle-toolbar", "calendar-bar"); -------------------------------------------------------------------------------- /data/toggle-toolbar/description: -------------------------------------------------------------------------------- 1 | Toggle the main toolbar from showing to hidden. Don't place it on the main toolbar, it is disabled then and will not work. -------------------------------------------------------------------------------- /data/toggle-toolbar/image: -------------------------------------------------------------------------------- 1 | toolbar-delete.png 2 | toolbar-add.png [activated="false"] -------------------------------------------------------------------------------- /data/toggle-toolbar/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/toggle-toolbar/legacy -------------------------------------------------------------------------------- /data/toggle-toolbar/mail.js: -------------------------------------------------------------------------------- 1 | toolbar_buttons.loadToggleToolbar(document, "toggle-toolbar", "mail-bar3"); -------------------------------------------------------------------------------- /data/toolbar-menu/description: -------------------------------------------------------------------------------- 1 | Show and hide toolbars quickly and easily. 2 | 3 | Toolbars use up valuable screen real estate, removing them frees this up to show more web page or email depending on what your doing. -------------------------------------------------------------------------------- /data/toolbar-menu/image: -------------------------------------------------------------------------------- 1 | toolbar-edit.png -------------------------------------------------------------------------------- /data/toolbar-menu/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/toolbar-menu/legacy -------------------------------------------------------------------------------- /data/top-page/background.js: -------------------------------------------------------------------------------- 1 | browser.browserAction.onClicked.addListener(function() { 2 | browser.tabs.executeScript({ 3 | "code": "window.scrollTo(0, 0);" 4 | }); 5 | }); -------------------------------------------------------------------------------- /data/top-page/description: -------------------------------------------------------------------------------- 1 | Scroll the page to the very top. -------------------------------------------------------------------------------- /data/top-page/image: -------------------------------------------------------------------------------- 1 | resultset-vertical-start.png -------------------------------------------------------------------------------- /data/top-page/key: -------------------------------------------------------------------------------- 1 | VK_PAGE_UP:alt -------------------------------------------------------------------------------- /data/translate/description: -------------------------------------------------------------------------------- 1 | Translate current page to your preferred language using the Google Translation service. -------------------------------------------------------------------------------- /data/translate/image: -------------------------------------------------------------------------------- 1 | pencil.png -------------------------------------------------------------------------------- /data/translate/preferences: -------------------------------------------------------------------------------- 1 | translate.lang:'en' 2 | translate.promt:'ae' 3 | translate.service:'google' 4 | -------------------------------------------------------------------------------- /data/translate/strings: -------------------------------------------------------------------------------- 1 | translate.loading=Loading... 2 | -------------------------------------------------------------------------------- /data/undo-close-tab/description: -------------------------------------------------------------------------------- 1 | Reopen the last closed tab. Really nice when a tab is closed by mistake, or you decided you did not really want to close it moments too late. -------------------------------------------------------------------------------- /data/undo-close-tab/image: -------------------------------------------------------------------------------- 1 | tab-undo.png 2 | bin-undo.png > dropmarker.toolbarbutton-menubutton-dropmarker -------------------------------------------------------------------------------- /data/undo-close-tab/preferences: -------------------------------------------------------------------------------- 1 | menupopup.hide.undo-close-tab:true -------------------------------------------------------------------------------- /data/undo/button.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/undo/description: -------------------------------------------------------------------------------- 1 | Undo last change/action. -------------------------------------------------------------------------------- /data/undo/image: -------------------------------------------------------------------------------- 1 | undo.png 2 | *undo.png [disabled="true"] -------------------------------------------------------------------------------- /data/undo/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/undo/legacy -------------------------------------------------------------------------------- /data/undo/mail-address-book.xul: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /data/up-directory/description: -------------------------------------------------------------------------------- 1 | Go up one directory. This effectively removes ever non forward slash character after the last one. -------------------------------------------------------------------------------- /data/up-directory/image: -------------------------------------------------------------------------------- 1 | folder-go.png 2 | page.png menuitem -------------------------------------------------------------------------------- /data/use-document-colors/description: -------------------------------------------------------------------------------- 1 | Toggles between using the default colors (that tend to be easily readable) and the colors set by the web pages author. -------------------------------------------------------------------------------- /data/use-document-colors/image: -------------------------------------------------------------------------------- 1 | page-white-color.png 2 | -page-white-color.png [activated="false"] 3 | page-white-color.png [activated="1"] 4 | -page-white-color.png [activated="2"] -------------------------------------------------------------------------------- /data/use-document-colors/key: -------------------------------------------------------------------------------- 1 | C:accel,alt -------------------------------------------------------------------------------- /data/use-document-fonts/description: -------------------------------------------------------------------------------- 1 | Toggle between the use of the fonts used by the site and those that are set as the default. -------------------------------------------------------------------------------- /data/use-document-fonts/image: -------------------------------------------------------------------------------- 1 | page-white-font.png 2 | -page-white-font.png [activated="0"] -------------------------------------------------------------------------------- /data/use-document-fonts/key: -------------------------------------------------------------------------------- 1 | F:accel,alt -------------------------------------------------------------------------------- /data/websearch/browser.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/websearch/description: -------------------------------------------------------------------------------- 1 | Search the web with your default Search Engine. Only useful if you don't have the search bar visible. -------------------------------------------------------------------------------- /data/websearch/image: -------------------------------------------------------------------------------- 1 | world-explore.png -------------------------------------------------------------------------------- /data/websearch/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/websearch/legacy -------------------------------------------------------------------------------- /data/wikipedia/description: -------------------------------------------------------------------------------- 1 | Open Wikipedia home page to find and edit articles. about:config can be used to edit what page this opens at. -------------------------------------------------------------------------------- /data/wikipedia/image: -------------------------------------------------------------------------------- 1 | book-wiki.png -------------------------------------------------------------------------------- /data/wikipedia/preferences: -------------------------------------------------------------------------------- 1 | url.wikipedia:"http://wikipedia.org/" 2 | always.new.tab:false -------------------------------------------------------------------------------- /data/workoffline/browser.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/workoffline/description: -------------------------------------------------------------------------------- 1 | Toggle Work Offline and Work Online. -------------------------------------------------------------------------------- /data/workoffline/image: -------------------------------------------------------------------------------- 1 | world-connect.png 2 | world-disconnect.png [checked="true"] -------------------------------------------------------------------------------- /data/workoffline/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/data/workoffline/legacy -------------------------------------------------------------------------------- /data/workoffline/mail.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/workoffline/read.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/yahoo-button/image: -------------------------------------------------------------------------------- 1 | yahoo.png -------------------------------------------------------------------------------- /data/yahoo-button/preferences: -------------------------------------------------------------------------------- 1 | url.yahoo:"http://mail.yahoo.com/" 2 | always.new.tab:false -------------------------------------------------------------------------------- /depreciated/about-firefox/description: -------------------------------------------------------------------------------- 1 | Open the about window. Useful for checking exactly what version you have installed. -------------------------------------------------------------------------------- /depreciated/about-firefox/hidden: -------------------------------------------------------------------------------- 1 | about-application -------------------------------------------------------------------------------- /depreciated/about-firefox/image: -------------------------------------------------------------------------------- 1 | information.png -------------------------------------------------------------------------------- /depreciated/about-firefox/strings: -------------------------------------------------------------------------------- 1 | about-firefox.label=About 2 | about-firefox.tooltip=About Firefox -------------------------------------------------------------------------------- /depreciated/open/browser.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depreciated/open/description: -------------------------------------------------------------------------------- 1 | Open a file stored on your local hard drive. Can be used to install extensions or themes. -------------------------------------------------------------------------------- /depreciated/open/hidden: -------------------------------------------------------------------------------- 1 | tb-open -------------------------------------------------------------------------------- /depreciated/open/image: -------------------------------------------------------------------------------- 1 | folder-open.png -------------------------------------------------------------------------------- /depreciated/open/mail.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depreciated/open/strings: -------------------------------------------------------------------------------- 1 | open.label=Open 2 | open.tooltip=Open -------------------------------------------------------------------------------- /depreciated/tb-page-go/description: -------------------------------------------------------------------------------- 1 | Go to the current address in the Location Bar. -------------------------------------------------------------------------------- /depreciated/tb-page-go/hidden: -------------------------------------------------------------------------------- 1 | tb-url-go-button -------------------------------------------------------------------------------- /depreciated/tb-page-go/image: -------------------------------------------------------------------------------- 1 | arrow-forward.png 2 | *arrow-forward.png [disabled="true"] -------------------------------------------------------------------------------- /depreciated/tb-page-go/strings: -------------------------------------------------------------------------------- 1 | tb-page-go.label=Go 2 | tb-page-go.tooltip=Go to the address in the Location Bar. -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /depreciated/tb-reload-all-tabs/strings: -------------------------------------------------------------------------------- 1 | tb-reload-all-tabs.label=Reload All Tabs 2 | tb-reload-all-tabs.tooltip=Reload All Tabs -------------------------------------------------------------------------------- /files/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/files/block.png -------------------------------------------------------------------------------- /files/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/files/icon.png -------------------------------------------------------------------------------- /files/icons/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/files/icons/browser.png -------------------------------------------------------------------------------- /files/icons/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/files/icons/calendar.png -------------------------------------------------------------------------------- /files/icons/messenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/files/icons/messenger.png -------------------------------------------------------------------------------- /files/icons/suite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/files/icons/suite.png -------------------------------------------------------------------------------- /files/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/files/play.png -------------------------------------------------------------------------------- /files/toolbar-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/files/toolbar-back.png -------------------------------------------------------------------------------- /files/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/files/top.png -------------------------------------------------------------------------------- /find_app_string.sh: -------------------------------------------------------------------------------- 1 | python ../mozbutton_sdk/find_app_string.py toolbar_button.json local.json default.json | sort > app_locale/data 2 | -------------------------------------------------------------------------------- /icons/16/codefisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/icons/16/codefisher.png -------------------------------------------------------------------------------- /icons/24/codefisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/icons/24/codefisher.png -------------------------------------------------------------------------------- /icons/32/codefisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/icons/32/codefisher.png -------------------------------------------------------------------------------- /icons/48/codefisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/icons/48/codefisher.png -------------------------------------------------------------------------------- /locale/ar/pre_button.properties: -------------------------------------------------------------------------------- 1 | empty=Empty 2 | tb-useragent-switch.label=عميل المستخدم -------------------------------------------------------------------------------- /locale/ar/pre_options.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /locale/el/pre_options.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /locale/en-US/meta.dtd: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /locale/es-AR/pre_options.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /locale/es-ES/pre_options.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /locale/he-IL/meta.dtd: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /locale/it/pre_options.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /locale/ja-JP/pre_options.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /locale/ko-KR/pre_options.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /locale/pl/pre_options.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /locale/ro/pre_options.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /locale/ru-RU/pre_options.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /locale/sk-SK/pre_options.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /locale/sl-SI/meta.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /locale/sl-SI/pre_files.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/locale/sl-SI/pre_files.dtd -------------------------------------------------------------------------------- /locale/sv-SE/pre_options.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /locale/tr/pre_button.properties: -------------------------------------------------------------------------------- 1 | empty=Boş 2 | tb-useragent-switch.label=Kullanıcı aracı -------------------------------------------------------------------------------- /locale/tr/pre_options.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /locale/zh-CN/pre_options.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /locale/zh-TW/pre_options.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /locale/zh/meta.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- 1 | python3 ../mozbutton_sdk/build.py toolbar_button.json local.json default.json 2 | -------------------------------------------------------------------------------- /nightly.sh: -------------------------------------------------------------------------------- 1 | python ../mozbutton_sdk/build.py -v --git-revision --update-rdf=update.rdf toolbar_button.json local.json nightly.json 2 | -------------------------------------------------------------------------------- /pre.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale_file_prefix": "pre_", 3 | "missing_strings": "search", 4 | "projects": ["pre"] 5 | } 6 | -------------------------------------------------------------------------------- /pre/tb-about-permissions/description: -------------------------------------------------------------------------------- 1 | Open about:permissions to check and manage what are the security settings for the websites you use. -------------------------------------------------------------------------------- /pre/tb-about-permissions/image: -------------------------------------------------------------------------------- 1 | world-key.png -------------------------------------------------------------------------------- /pre/tb-about-permissions/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-about-permissions/legacy -------------------------------------------------------------------------------- /pre/tb-about-permissions/strings: -------------------------------------------------------------------------------- 1 | tb-about-permissions.label=about:permissions 2 | tb-about-permissions.tooltip=Open about:permissions -------------------------------------------------------------------------------- /pre/tb-addon-options/description: -------------------------------------------------------------------------------- 1 | Displays a submenu that allows you to open the option window for any add-on that has one. -------------------------------------------------------------------------------- /pre/tb-addon-options/image: -------------------------------------------------------------------------------- 1 | plugin-gear.png -------------------------------------------------------------------------------- /pre/tb-addon-options/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-addon-options/legacy -------------------------------------------------------------------------------- /pre/tb-addon-options/strings: -------------------------------------------------------------------------------- 1 | tb-addon-options.label=Add-on Preferences 2 | tb-addon-options.tooltip=Open the preference window of an add-on. -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-addons-exceptions/legacy -------------------------------------------------------------------------------- /pre/tb-archive-thread/description: -------------------------------------------------------------------------------- 1 | Send the Selected Thread to the Archive 2 | -------------------------------------------------------------------------------- /pre/tb-archive-thread/image: -------------------------------------------------------------------------------- 1 | box.png 2 | -------------------------------------------------------------------------------- /pre/tb-archive-thread/key: -------------------------------------------------------------------------------- 1 | E:shift 2 | -------------------------------------------------------------------------------- /pre/tb-archive-thread/strings: -------------------------------------------------------------------------------- 1 | tb-archive-thread.label=Archive Thread 2 | tb-archive-thread.tooltip=Send the Selected Thread to the Archive -------------------------------------------------------------------------------- /pre/tb-base64/description: -------------------------------------------------------------------------------- 1 | Converts Files to their base64 equivalent 2 | -------------------------------------------------------------------------------- /pre/tb-base64/image: -------------------------------------------------------------------------------- 1 | building-go.png -------------------------------------------------------------------------------- /pre/tb-bookmark-sidebar/description: -------------------------------------------------------------------------------- 1 | Toggles the display of the Bookmarks sidebar. -------------------------------------------------------------------------------- /pre/tb-bookmark-sidebar/image: -------------------------------------------------------------------------------- 1 | bookmark.png -------------------------------------------------------------------------------- /pre/tb-bookmark-sidebar/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-bookmark-sidebar/legacy -------------------------------------------------------------------------------- /pre/tb-bookmark-sidebar/strings: -------------------------------------------------------------------------------- 1 | tb-bookmark-sidebar.label=Bookmark Sidebar 2 | tb-bookmark-sidebar.tooltip=Toggle Bookmark Sidebar -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-browser-console/legacy -------------------------------------------------------------------------------- /pre/tb-browser-console/strings: -------------------------------------------------------------------------------- 1 | tb-browser-console.label=Browser Console 2 | tb-browser-console.tooltip=Open the Browser Console -------------------------------------------------------------------------------- /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-color-picker/description: -------------------------------------------------------------------------------- 1 | Opens a color picker dialog window, to chose and work with colors. 2 | -------------------------------------------------------------------------------- /pre/tb-color-picker/files/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-color-picker/files/back.png -------------------------------------------------------------------------------- /pre/tb-color-picker/files/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-color-picker/files/close.png -------------------------------------------------------------------------------- /pre/tb-color-picker/image: -------------------------------------------------------------------------------- 1 | color-wheel.png 2 | -------------------------------------------------------------------------------- /pre/tb-color-picker/modules: -------------------------------------------------------------------------------- 1 | resource://gre/modules/Services.jsm 2 | resource://gre/modules/FileUtils.jsm -------------------------------------------------------------------------------- /pre/tb-color-picker/popup/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-color-picker/popup/cog.png -------------------------------------------------------------------------------- /pre/tb-color-picker/popup/color-wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-color-picker/popup/color-wheel.png -------------------------------------------------------------------------------- /pre/tb-color-picker/popup/eyedropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-color-picker/popup/eyedropper.png -------------------------------------------------------------------------------- /pre/tb-color-picker/preferences: -------------------------------------------------------------------------------- 1 | colorpicker.intab:false 2 | -------------------------------------------------------------------------------- /pre/tb-cookie-exceptions/browser.js: -------------------------------------------------------------------------------- 1 | openCookieExceptions: function(event) { 2 | toolbar_buttons.openPermissions(event, "cookie", "cookiepermissionstitle", "cookiepermissionstext"); 3 | } -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-cookie-exceptions/legacy -------------------------------------------------------------------------------- /pre/tb-cookie-exceptions/strings: -------------------------------------------------------------------------------- 1 | tb-cookie-exceptions.label=Cookie Exceptions 2 | tb-cookie-exceptions.tooltip=Open the Cookie Exceptions dialog -------------------------------------------------------------------------------- /pre/tb-copy/description: -------------------------------------------------------------------------------- 1 | Copy selected text. -------------------------------------------------------------------------------- /pre/tb-copy/image: -------------------------------------------------------------------------------- 1 | page-copy.png 2 | *page-copy.png [disabled="true"] -------------------------------------------------------------------------------- /pre/tb-copy/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-copy/legacy -------------------------------------------------------------------------------- /pre/tb-copy/mail.xul: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /pre/tb-copy/strings: -------------------------------------------------------------------------------- 1 | tb-copy.label=Copy 2 | tb-copy.tooltip=Copy Selected Text -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-create-profile/legacy -------------------------------------------------------------------------------- /pre/tb-create-profile/strings: -------------------------------------------------------------------------------- 1 | tb-create-profile.label=Create Profile 2 | tb-create-profile.tooltip=Create a New Profile -------------------------------------------------------------------------------- /pre/tb-cut/description: -------------------------------------------------------------------------------- 1 | Cut selected text. -------------------------------------------------------------------------------- /pre/tb-cut/image: -------------------------------------------------------------------------------- 1 | cut.png 2 | *cut.png [disabled="true"] -------------------------------------------------------------------------------- /pre/tb-cut/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-cut/legacy -------------------------------------------------------------------------------- /pre/tb-cut/mail.xul: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /pre/tb-cut/strings: -------------------------------------------------------------------------------- 1 | tb-cut.label=Cut 2 | tb-cut.tooltip=Cut Selected Text -------------------------------------------------------------------------------- /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-cookies/strings: -------------------------------------------------------------------------------- 1 | tb-delete-cookies.label=Delete Cookies 2 | tb-delete-cookies.tooltip=Delete all browser cookies. -------------------------------------------------------------------------------- /pre/tb-delete-session-cookies/description: -------------------------------------------------------------------------------- 1 | Deletes all the cookies from the current session. -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-developer-toolbar/legacy -------------------------------------------------------------------------------- /pre/tb-developer-toolbar/strings: -------------------------------------------------------------------------------- 1 | tb-developer-toolbar.label=Developer Toolbar 2 | tb-developer-toolbar.tooltip=Toggle Developer Toolbar -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | tb-down-page.label=Page Down 2 | tb-down-page.tooltip=Scroll One Page Down -------------------------------------------------------------------------------- /pre/tb-external-application/description: -------------------------------------------------------------------------------- 1 | Runs an external application -------------------------------------------------------------------------------- /pre/tb-external-application/file_list: -------------------------------------------------------------------------------- 1 | string-preference.js 2 | string-preference.xul -------------------------------------------------------------------------------- /pre/tb-external-application/image: -------------------------------------------------------------------------------- 1 | application-xp-terminal.png -------------------------------------------------------------------------------- /pre/tb-external-application/modules: -------------------------------------------------------------------------------- 1 | resource://gre/modules/Services.jsm 2 | resource://gre/modules/FileUtils.jsm 3 | 4 | -------------------------------------------------------------------------------- /pre/tb-external-application/strings: -------------------------------------------------------------------------------- 1 | tb-external-application.label=Run Application 2 | tb-external-application.tooltip=Run an external application 3 | tb-external-application.config=Edit Applications -------------------------------------------------------------------------------- /pre/tb-eyedropper/description: -------------------------------------------------------------------------------- 1 | Enable the Eyedropper. The colour of the point selected with be copied the the clip board -------------------------------------------------------------------------------- /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/preferences: -------------------------------------------------------------------------------- 1 | devtools.eyedropper.zoom:6 2 | devtools.defaultColorUnit:"hex" -------------------------------------------------------------------------------- /pre/tb-eyedropper/strings: -------------------------------------------------------------------------------- 1 | tb-eyedropper.label=Eyedropper 2 | tb-eyedropper.tooltip=Eyedropper 3 | colorValue.copied=copied -------------------------------------------------------------------------------- /pre/tb-first-last-tab/description: -------------------------------------------------------------------------------- 1 | Goes to the first tab, or if the first tab is sellected, the last tab. -------------------------------------------------------------------------------- /pre/tb-first-last-tab/image: -------------------------------------------------------------------------------- 1 | tabs-star.png -------------------------------------------------------------------------------- /pre/tb-first-last-tab/strings: -------------------------------------------------------------------------------- 1 | tb-first-last-tab.label=Go First/Last Tab 2 | tb-first-last-tab.tooltip=Go to the First or Last Tab -------------------------------------------------------------------------------- /pre/tb-format-menu/description: -------------------------------------------------------------------------------- 1 | Show the Format Menu -------------------------------------------------------------------------------- /pre/tb-format-menu/image: -------------------------------------------------------------------------------- 1 | text.png -------------------------------------------------------------------------------- /pre/tb-format-menu/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-format-menu/legacy -------------------------------------------------------------------------------- /pre/tb-format-menu/strings: -------------------------------------------------------------------------------- 1 | tb-format-menu.label=Format 2 | tb-format-menu.tooltip=Show the Format Menu -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-free-memory/legacy -------------------------------------------------------------------------------- /pre/tb-free-memory/modules: -------------------------------------------------------------------------------- 1 | resource://gre/modules/Services.jsm -------------------------------------------------------------------------------- /pre/tb-free-memory/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false 2 | free-memory.default.action:0 3 | free-memory.idle.enabled:false 4 | free-memory.idle.time:15 5 | free-memory.show-notifications:true -------------------------------------------------------------------------------- /pre/tb-go-back/description: -------------------------------------------------------------------------------- 1 | Go Back. A replacement for the default Back button that can be put anywhere. -------------------------------------------------------------------------------- /pre/tb-go-back/image: -------------------------------------------------------------------------------- 1 | arrow-back.png 2 | *arrow-back.png [disabled="true"] -------------------------------------------------------------------------------- /pre/tb-go-back/preferences: -------------------------------------------------------------------------------- 1 | showamenu.back-button:true -------------------------------------------------------------------------------- /pre/tb-go-back/strings: -------------------------------------------------------------------------------- 1 | tb-go-back.label=Back 2 | tb-go-back.tooltip=Back 3 | tb-go-back.option.label=Also show the default Back button. -------------------------------------------------------------------------------- /pre/tb-go-forward/description: -------------------------------------------------------------------------------- 1 | Go Forward. A replacement for the default Forward button. -------------------------------------------------------------------------------- /pre/tb-go-forward/image: -------------------------------------------------------------------------------- 1 | arrow-forward.png 2 | *arrow-forward.png [disabled="true"] -------------------------------------------------------------------------------- /pre/tb-go-forward/preferences: -------------------------------------------------------------------------------- 1 | showamenu.forward-button:true 2 | tb-go-forward.hide-when-disabled:false -------------------------------------------------------------------------------- /pre/tb-go-forward/strings: -------------------------------------------------------------------------------- 1 | tb-go-forward.label=Forward 2 | tb-go-forward.tooltip=Forward 3 | tb-go-forward.option.label=Also show the default Forward button. 4 | tb-go-forward.disabled.option=Hide Forward button when disabled. -------------------------------------------------------------------------------- /pre/tb-go-menu/description: -------------------------------------------------------------------------------- 1 | Show the Go Menu -------------------------------------------------------------------------------- /pre/tb-go-menu/image: -------------------------------------------------------------------------------- 1 | menu-go.png -------------------------------------------------------------------------------- /pre/tb-go-menu/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-go-menu/legacy -------------------------------------------------------------------------------- /pre/tb-go-menu/strings: -------------------------------------------------------------------------------- 1 | tb-go-menu.label=Go 2 | tb-go-menu.tooltip=Show the Go Menu -------------------------------------------------------------------------------- /pre/tb-help-menu/description: -------------------------------------------------------------------------------- 1 | Show the Help Menu -------------------------------------------------------------------------------- /pre/tb-help-menu/image: -------------------------------------------------------------------------------- 1 | help.png -------------------------------------------------------------------------------- /pre/tb-help-menu/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-help-menu/legacy -------------------------------------------------------------------------------- /pre/tb-help-menu/strings: -------------------------------------------------------------------------------- 1 | tb-help-menu.label=Help 2 | tb-help-menu.tooltip=Open Help Menu -------------------------------------------------------------------------------- /pre/tb-hide-other-toolbars/description: -------------------------------------------------------------------------------- 1 | Toggle the visibility of all toolbar, other then the main toolbar. 2 | -------------------------------------------------------------------------------- /pre/tb-hide-other-toolbars/image: -------------------------------------------------------------------------------- 1 | toolbar.png -------------------------------------------------------------------------------- /pre/tb-hide-other-toolbars/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-hide-other-toolbars/legacy -------------------------------------------------------------------------------- /pre/tb-hide-other-toolbars/strings: -------------------------------------------------------------------------------- 1 | tb-hide-other-toolbars.label=Hide Toolbars 2 | tb-hide-other-toolbars.tooltip=Toggle visibility of all toolbars, except the main toolbar 3 | -------------------------------------------------------------------------------- /pre/tb-history-sidebar/description: -------------------------------------------------------------------------------- 1 | Toggles the display of the History sidebar. -------------------------------------------------------------------------------- /pre/tb-history-sidebar/image: -------------------------------------------------------------------------------- 1 | time.png -------------------------------------------------------------------------------- /pre/tb-history-sidebar/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-history-sidebar/legacy -------------------------------------------------------------------------------- /pre/tb-history-sidebar/strings: -------------------------------------------------------------------------------- 1 | tb-history-sidebar.label=History Sidebar 2 | tb-history-sidebar.tooltip=Toggle History Sidebar -------------------------------------------------------------------------------- /pre/tb-insert-menu/description: -------------------------------------------------------------------------------- 1 | Show Insert Menu -------------------------------------------------------------------------------- /pre/tb-insert-menu/image: -------------------------------------------------------------------------------- 1 | layout.png -------------------------------------------------------------------------------- /pre/tb-insert-menu/strings: -------------------------------------------------------------------------------- 1 | tb-insert-menu.label=Insert 2 | tb-insert-menu.tooltip=Show Insert Menu -------------------------------------------------------------------------------- /pre/tb-inspector/description: -------------------------------------------------------------------------------- 1 | Open the Web Tools at the Inspector tab. -------------------------------------------------------------------------------- /pre/tb-inspector/image: -------------------------------------------------------------------------------- 1 | layout-code.png -------------------------------------------------------------------------------- /pre/tb-inspector/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-inspector/legacy -------------------------------------------------------------------------------- /pre/tb-inspector/strings: -------------------------------------------------------------------------------- 1 | tb-inspector.label=Inspector 2 | tb-inspector.tooltip=Inspect Element -------------------------------------------------------------------------------- /pre/tb-jsdebugger/description: -------------------------------------------------------------------------------- 1 | Open the Web Tools at the Debugger tab. -------------------------------------------------------------------------------- /pre/tb-jsdebugger/image: -------------------------------------------------------------------------------- 1 | script-gear.png -------------------------------------------------------------------------------- /pre/tb-jsdebugger/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-jsdebugger/legacy -------------------------------------------------------------------------------- /pre/tb-jsdebugger/strings: -------------------------------------------------------------------------------- 1 | tb-jsdebugger.label=Debugger 2 | tb-jsdebugger.tooltip=Show Debugger -------------------------------------------------------------------------------- /pre/tb-jsprofiler/description: -------------------------------------------------------------------------------- 1 | Open the Web Tools at the Performance tab. -------------------------------------------------------------------------------- /pre/tb-jsprofiler/image: -------------------------------------------------------------------------------- 1 | script-time.png -------------------------------------------------------------------------------- /pre/tb-jsprofiler/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-jsprofiler/legacy -------------------------------------------------------------------------------- /pre/tb-jsprofiler/strings: -------------------------------------------------------------------------------- 1 | tb-jsprofiler.label=Performance 2 | tb-jsprofiler.tooltip=Show Performance -------------------------------------------------------------------------------- /pre/tb-languages/description: -------------------------------------------------------------------------------- 1 | Open the Language Manager to enable or disable or do any other needed tasks to any of your language packs. -------------------------------------------------------------------------------- /pre/tb-languages/image: -------------------------------------------------------------------------------- 1 | flag-blue.png -------------------------------------------------------------------------------- /pre/tb-languages/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-languages/legacy -------------------------------------------------------------------------------- /pre/tb-languages/strings: -------------------------------------------------------------------------------- 1 | tb-languages.label=Languages 2 | tb-languages.tooltip=Open Language Manager -------------------------------------------------------------------------------- /pre/tb-message-menu/description: -------------------------------------------------------------------------------- 1 | Show the Message Menu -------------------------------------------------------------------------------- /pre/tb-message-menu/image: -------------------------------------------------------------------------------- 1 | menu-email.png -------------------------------------------------------------------------------- /pre/tb-message-menu/strings: -------------------------------------------------------------------------------- 1 | tb-message-menu.label=Message 2 | tb-message-menu.tooltip=Show the Message Menu -------------------------------------------------------------------------------- /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-move-to-window/strings: -------------------------------------------------------------------------------- 1 | tb-move-to-window.label=Move to Window 2 | tb-move-to-window.tooltip=Move tab to New Window -------------------------------------------------------------------------------- /pre/tb-network-monitor/description: -------------------------------------------------------------------------------- 1 | Open the Web Tools at the Network Monitor tab. -------------------------------------------------------------------------------- /pre/tb-network-monitor/image: -------------------------------------------------------------------------------- 1 | world-network-lightning.png -------------------------------------------------------------------------------- /pre/tb-network-monitor/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-network-monitor/legacy -------------------------------------------------------------------------------- /pre/tb-network-monitor/strings: -------------------------------------------------------------------------------- 1 | tb-network-monitor.label=Network 2 | tb-network-monitor.tooltip=Show Network Monitor -------------------------------------------------------------------------------- /pre/tb-new-window/description: -------------------------------------------------------------------------------- 1 | Open a new browser window. -------------------------------------------------------------------------------- /pre/tb-new-window/image: -------------------------------------------------------------------------------- 1 | application.png -------------------------------------------------------------------------------- /pre/tb-new-window/strings: -------------------------------------------------------------------------------- 1 | tb-new-window.label=New Window 2 | tb-new-window.tooltip=Open New Window -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | tb-not-junk.label=Not Junk 2 | tb-not-junk.tooltip=Mark the selected messages as not junk -------------------------------------------------------------------------------- /pre/tb-open-download-folder/description: -------------------------------------------------------------------------------- 1 | Open the default download folder. -------------------------------------------------------------------------------- /pre/tb-open-download-folder/image: -------------------------------------------------------------------------------- 1 | folder-down.png -------------------------------------------------------------------------------- /pre/tb-open-download-folder/strings: -------------------------------------------------------------------------------- 1 | tb-open-download-folder.label=Download Folder 2 | tb-open-download-folder.tooltip=Open the Download Folder -------------------------------------------------------------------------------- /pre/tb-options-menu/description: -------------------------------------------------------------------------------- 1 | Show the options menu in the compose mail window. -------------------------------------------------------------------------------- /pre/tb-options-menu/image: -------------------------------------------------------------------------------- 1 | cog.png -------------------------------------------------------------------------------- /pre/tb-options-menu/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-options-menu/legacy -------------------------------------------------------------------------------- /pre/tb-options-menu/strings: -------------------------------------------------------------------------------- 1 | tb-options-menu.label=Options Menu 2 | tb-options-menu.tooltip=Show Options Menu -------------------------------------------------------------------------------- /pre/tb-paste-as-quote/description: -------------------------------------------------------------------------------- 1 | Paste text so that it appears as a quoted message. -------------------------------------------------------------------------------- /pre/tb-paste-as-quote/image: -------------------------------------------------------------------------------- 1 | paste-comment.png -------------------------------------------------------------------------------- /pre/tb-paste-as-quote/strings: -------------------------------------------------------------------------------- 1 | tb-paste-as-quote.label=Paste As Quotation 2 | tb-paste-as-quote.tooltip=Paste as a Quotation -------------------------------------------------------------------------------- /pre/tb-paste/description: -------------------------------------------------------------------------------- 1 | Paste text. -------------------------------------------------------------------------------- /pre/tb-paste/image: -------------------------------------------------------------------------------- 1 | paste.png 2 | *paste.png [disabled="true"] -------------------------------------------------------------------------------- /pre/tb-paste/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-paste/legacy -------------------------------------------------------------------------------- /pre/tb-paste/mail.xul: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /pre/tb-paste/strings: -------------------------------------------------------------------------------- 1 | tb-paste.label=Paste 2 | tb-paste.tooltip=Paste -------------------------------------------------------------------------------- /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/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "default_title": "tb-pin-tab.label", 3 | "name": "tb-pin-tab.label", 4 | "permissions": ["tabs"], 5 | "amo_page": "", 6 | "download": "" 7 | } -------------------------------------------------------------------------------- /pre/tb-pin-tab/strings: -------------------------------------------------------------------------------- 1 | tb-pin-tab.label=Pin Tab 2 | tb-pin-tab.tooltip=Toggle Pin Tab -------------------------------------------------------------------------------- /pre/tb-pipeline-toggle/description: -------------------------------------------------------------------------------- 1 | Toggle the Pipeline setting. -------------------------------------------------------------------------------- /pre/tb-pipeline-toggle/image: -------------------------------------------------------------------------------- 1 | pipe-add.png 2 | pipe-delete.png [activated="false"] -------------------------------------------------------------------------------- /pre/tb-pipeline-toggle/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-pipeline-toggle/legacy -------------------------------------------------------------------------------- /pre/tb-pipeline-toggle/strings: -------------------------------------------------------------------------------- 1 | tb-pipeline-toggle.label=Pipeline Toggle 2 | tb-pipeline-toggle.tooltip=Pipeline Toggle -------------------------------------------------------------------------------- /pre/tb-plugins/description: -------------------------------------------------------------------------------- 1 | Open the Plugin Manager to enable or disable or do any other needed tasks to any of your plugins. -------------------------------------------------------------------------------- /pre/tb-plugins/image: -------------------------------------------------------------------------------- 1 | brick.png -------------------------------------------------------------------------------- /pre/tb-plugins/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-plugins/legacy -------------------------------------------------------------------------------- /pre/tb-plugins/strings: -------------------------------------------------------------------------------- 1 | tb-plugins.label=Plugins 2 | tb-plugins.tooltip=Open Plugin Manager -------------------------------------------------------------------------------- /pre/tb-remote-content/description: -------------------------------------------------------------------------------- 1 | Opens the window to set exceptions for the loading of remote content 2 | -------------------------------------------------------------------------------- /pre/tb-remote-content/image: -------------------------------------------------------------------------------- 1 | layout-world.png -------------------------------------------------------------------------------- /pre/tb-remote-content/strings: -------------------------------------------------------------------------------- 1 | tb-remote-content.label=Remote Content 2 | tb-remote-content.tooltip=Set the exceptions for what remote content can load. -------------------------------------------------------------------------------- /pre/tb-responsive-ui/description: -------------------------------------------------------------------------------- 1 | Opens the Responsive Design View, to show how the web pages might appear on a mobile device. -------------------------------------------------------------------------------- /pre/tb-responsive-ui/image: -------------------------------------------------------------------------------- 1 | mobile.png -------------------------------------------------------------------------------- /pre/tb-responsive-ui/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-responsive-ui/legacy -------------------------------------------------------------------------------- /pre/tb-responsive-ui/strings: -------------------------------------------------------------------------------- 1 | tb-responsive-ui.label=Responsive Design 2 | tb-responsive-ui.tooltip=Open Responsive Design View -------------------------------------------------------------------------------- /pre/tb-restart-addons-disabled/description: -------------------------------------------------------------------------------- 1 | Restarts the application with all the installed add-ons disabled. -------------------------------------------------------------------------------- /pre/tb-restart-addons-disabled/image: -------------------------------------------------------------------------------- 1 | plugin-error.png -------------------------------------------------------------------------------- /pre/tb-restart-addons-disabled/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-restart-addons-disabled/legacy -------------------------------------------------------------------------------- /pre/tb-restart-addons-disabled/strings: -------------------------------------------------------------------------------- 1 | tb-restart-addons-disabled.label=Restart in Safe Mode 2 | tb-restart-addons-disabled.tooltip=Restart application with Add-ons Disabled -------------------------------------------------------------------------------- /pre/tb-rewrap-text/compose.xul: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre/tb-rewrap-text/description: -------------------------------------------------------------------------------- 1 | Rewraps the message text -------------------------------------------------------------------------------- /pre/tb-rewrap-text/image: -------------------------------------------------------------------------------- 1 | text-wrap.png -------------------------------------------------------------------------------- /pre/tb-rewrap-text/strings: -------------------------------------------------------------------------------- 1 | tb-rewrap-text.label=Rewrap 2 | tb-rewrap-text.tooltip=Rewrap -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-scratch-pad/legacy -------------------------------------------------------------------------------- /pre/tb-scratch-pad/strings: -------------------------------------------------------------------------------- 1 | tb-scratch-pad.label=Scratchpad 2 | tb-scratch-pad.tooltip=Open Scratchpad -------------------------------------------------------------------------------- /pre/tb-send-referrer/description: -------------------------------------------------------------------------------- 1 | Toggle the send referrer setting between the default, sending it for all links and images, to sending it just for links, to off. -------------------------------------------------------------------------------- /pre/tb-send-referrer/image: -------------------------------------------------------------------------------- 1 | page-referrer.png 2 | *page-referrer.png [activated="0"] 3 | link-go.png [activated="1"] -------------------------------------------------------------------------------- /pre/tb-send-referrer/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-send-referrer/legacy -------------------------------------------------------------------------------- /pre/tb-send-referrer/strings: -------------------------------------------------------------------------------- 1 | tb-send-referrer.label=Send Referrer 2 | tb-send-referrer.tooltip=Toggle Send Referrer -------------------------------------------------------------------------------- /pre/tb-services/description: -------------------------------------------------------------------------------- 1 | Open the Services Manager to enable or disable or do any other needed tasks to any of your services. -------------------------------------------------------------------------------- /pre/tb-services/image: -------------------------------------------------------------------------------- 1 | cloud.png -------------------------------------------------------------------------------- /pre/tb-services/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-services/legacy -------------------------------------------------------------------------------- /pre/tb-services/strings: -------------------------------------------------------------------------------- 1 | tb-services.label=Services 2 | tb-services.tooltip=Open Services Manager -------------------------------------------------------------------------------- /pre/tb-sidebar/description: -------------------------------------------------------------------------------- 1 | Toggle the open sidebars, such as the history and bookmark sidebars. -------------------------------------------------------------------------------- /pre/tb-sidebar/image: -------------------------------------------------------------------------------- 1 | application-side-boxes.png -------------------------------------------------------------------------------- /pre/tb-sidebar/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-sidebar/legacy -------------------------------------------------------------------------------- /pre/tb-sidebar/strings: -------------------------------------------------------------------------------- 1 | tb-sidebar.label=Sidebar 2 | tb-sidebar.tooltip=Toggle Sidebar -------------------------------------------------------------------------------- /pre/tb-social-share/description: -------------------------------------------------------------------------------- 1 | Share the current page on one of several social media platforms -------------------------------------------------------------------------------- /pre/tb-social-share/image: -------------------------------------------------------------------------------- 1 | share.png -------------------------------------------------------------------------------- /pre/tb-style-editor/description: -------------------------------------------------------------------------------- 1 | Open the Web Tools at the Style Editor tab. -------------------------------------------------------------------------------- /pre/tb-style-editor/image: -------------------------------------------------------------------------------- 1 | css.png -------------------------------------------------------------------------------- /pre/tb-style-editor/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-style-editor/legacy -------------------------------------------------------------------------------- /pre/tb-style-editor/strings: -------------------------------------------------------------------------------- 1 | tb-style-editor.label=Style Editor 2 | tb-style-editor.tooltip=Show Style Editor -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-switch-profile/legacy -------------------------------------------------------------------------------- /pre/tb-switch-profile/strings: -------------------------------------------------------------------------------- 1 | tb-switch-profile.label=Switch Profile... 2 | tb-switch-profile.tooltip=Change Profile that you are currently using. -------------------------------------------------------------------------------- /pre/tb-tab-close-history/description: -------------------------------------------------------------------------------- 1 | Open a list of the recently closed tabs. You can select tabs to restore from the list. -------------------------------------------------------------------------------- /pre/tb-tab-close-history/image: -------------------------------------------------------------------------------- 1 | bin-undo.png -------------------------------------------------------------------------------- /pre/tb-text-case-change/description: -------------------------------------------------------------------------------- 1 | Change the case of the currently selected text. -------------------------------------------------------------------------------- /pre/tb-text-case-change/image: -------------------------------------------------------------------------------- 1 | font.png -------------------------------------------------------------------------------- /pre/tb-text-zoom-only/button.js: -------------------------------------------------------------------------------- 1 | toolbar_buttons.loadPrefWatcher(document, "browser.zoom.full", "tb-text-zoom-only"); -------------------------------------------------------------------------------- /pre/tb-text-zoom-only/description: -------------------------------------------------------------------------------- 1 | Toggle between text and page zoom. -------------------------------------------------------------------------------- /pre/tb-text-zoom-only/image: -------------------------------------------------------------------------------- 1 | text-magnify.png 2 | page-magnify.png [activated="true"] -------------------------------------------------------------------------------- /pre/tb-text-zoom-only/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-text-zoom-only/legacy -------------------------------------------------------------------------------- /pre/tb-text-zoom-only/strings: -------------------------------------------------------------------------------- 1 | tb-text-zoom-only.label=Zoom Text Only 2 | tb-text-zoom-only.tooltip=Toggle between text and page zoom. -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-toggle-tools/legacy -------------------------------------------------------------------------------- /pre/tb-toggle-tools/strings: -------------------------------------------------------------------------------- 1 | tb-toggle-tools.label=Toggle Tools 2 | tb-toggle-tools.tooltip=Toggle Tools -------------------------------------------------------------------------------- /pre/tb-toolbar-display/description: -------------------------------------------------------------------------------- 1 | Set the toolbar icon size as either large or small, and the button display mode between icons, icons and text, or text only. -------------------------------------------------------------------------------- /pre/tb-toolbar-display/image: -------------------------------------------------------------------------------- 1 | toolbar-gear.png -------------------------------------------------------------------------------- /pre/tb-toolbar-display/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-toolbar-display/legacy -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | tb-up-page.label=Page Up 2 | tb-up-page.tooltip=Scroll One Page Up -------------------------------------------------------------------------------- /pre/tb-useragent-switch/description: -------------------------------------------------------------------------------- 1 | Allows the browser's user agent string to be changed to any of a number of predefined, or user set strings. -------------------------------------------------------------------------------- /pre/tb-useragent-switch/file_list: -------------------------------------------------------------------------------- 1 | string-preference.js 2 | string-preference.xul -------------------------------------------------------------------------------- /pre/tb-useragent-switch/image: -------------------------------------------------------------------------------- 1 | user.png -------------------------------------------------------------------------------- /pre/tb-useragent-switch/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-useragent-switch/legacy -------------------------------------------------------------------------------- /pre/tb-useragent-switch/modules: -------------------------------------------------------------------------------- 1 | resource://gre/modules/Services.jsm 2 | resource://gre/modules/FileUtils.jsm 3 | 4 | -------------------------------------------------------------------------------- /pre/tb-useragent-switch/strings: -------------------------------------------------------------------------------- 1 | tb-useragent-switch.label=User Agent 2 | tb-useragent-switch.tooltip=Change the current user agent string 3 | tb-useragent-switch.default=Default 4 | tb-useragent-switch.config=Configure -------------------------------------------------------------------------------- /pre/tb-web-console/description: -------------------------------------------------------------------------------- 1 | Open the Web Tools at the Web Console tab. -------------------------------------------------------------------------------- /pre/tb-web-console/image: -------------------------------------------------------------------------------- 1 | script-error.png -------------------------------------------------------------------------------- /pre/tb-web-console/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-web-console/legacy -------------------------------------------------------------------------------- /pre/tb-web-console/strings: -------------------------------------------------------------------------------- 1 | tb-web-console.label=Web Console 2 | tb-web-console.tooltip=Show the Web Console -------------------------------------------------------------------------------- /pre/tb-web-developer-menu/description: -------------------------------------------------------------------------------- 1 | Opens the Web Developer Menu to access tools like the Web Console and Developer Toolbar -------------------------------------------------------------------------------- /pre/tb-web-developer-menu/image: -------------------------------------------------------------------------------- 1 | world-gear.png -------------------------------------------------------------------------------- /pre/tb-web-developer-menu/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-web-developer-menu/legacy -------------------------------------------------------------------------------- /pre/tb-web-developer-menu/strings: -------------------------------------------------------------------------------- 1 | tb-web-developer-menu.label=Web Developer 2 | tb-web-developer-menu.tooltip=Opens the Web Developer Menu -------------------------------------------------------------------------------- /pre/tb-webide/description: -------------------------------------------------------------------------------- 1 | Open the WebIDE to manage your apps. -------------------------------------------------------------------------------- /pre/tb-webide/image: -------------------------------------------------------------------------------- 1 | plugin-wrench.png -------------------------------------------------------------------------------- /pre/tb-webide/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/pre/tb-webide/legacy -------------------------------------------------------------------------------- /pre/tb-webide/strings: -------------------------------------------------------------------------------- 1 | tb-webide.label=WebIDE 2 | tb-webide.tooltip=Open WebIDE -------------------------------------------------------------------------------- /pre/tb-window-menu/description: -------------------------------------------------------------------------------- 1 | Show the window Menu -------------------------------------------------------------------------------- /pre/tb-window-menu/image: -------------------------------------------------------------------------------- 1 | application-xp.png -------------------------------------------------------------------------------- /pre/tb-window-menu/strings: -------------------------------------------------------------------------------- 1 | tb-window-menu.label=Window 2 | tb-window-menu.tooltip=Show Window Menu -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- 1 | python3 ../mozbutton_sdk/build.py -v toolbar_button.json local.json release.json 2 | -------------------------------------------------------------------------------- /singles.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | echo configs/*.json | python3 ../mozbutton_sdk/build.py -p toolbar_button.json local.json single.json 3 | -------------------------------------------------------------------------------- /staging/copy-address/description: -------------------------------------------------------------------------------- 1 | Copy the email address of the currently open email the the clip board. -------------------------------------------------------------------------------- /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/image: -------------------------------------------------------------------------------- 1 | house-edit.png 2 | page-white-house.png menuitem 3 | page-house.png #homePageSetCurrent 4 | house-add.png #homePageAddCurrent 5 | houses.png #homePageChangeItem -------------------------------------------------------------------------------- /staging/home-page-change/legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/staging/home-page-change/legacy -------------------------------------------------------------------------------- /staging/home-page-change/modules: -------------------------------------------------------------------------------- 1 | resource://gre/modules/SharedPromptUtils.jsm -------------------------------------------------------------------------------- /staging/home-page-change/preferences: -------------------------------------------------------------------------------- 1 | always.new.tab:false -------------------------------------------------------------------------------- /staging/ignored-threads/description: -------------------------------------------------------------------------------- 1 | View all the threads in the current folder that are set as ignored. -------------------------------------------------------------------------------- /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/description: -------------------------------------------------------------------------------- 1 | Toggle the starred status (look for the star next to the message). -------------------------------------------------------------------------------- /staging/toggle-starred/image: -------------------------------------------------------------------------------- 1 | star.png -------------------------------------------------------------------------------- /staging/unread-threads/description: -------------------------------------------------------------------------------- 1 | View threads that you have not read yet. -------------------------------------------------------------------------------- /staging/unread-threads/image: -------------------------------------------------------------------------------- 1 | comments-thread-star.png -------------------------------------------------------------------------------- /staging/watched-with-unread-threads/description: -------------------------------------------------------------------------------- 1 | View watched threads that have unread messages in them. -------------------------------------------------------------------------------- /staging/watched-with-unread-threads/image: -------------------------------------------------------------------------------- 1 | comments-thread-add.png -------------------------------------------------------------------------------- /staging/with-unread-threads/description: -------------------------------------------------------------------------------- 1 | View only the threads in the current folder that have unread messages. -------------------------------------------------------------------------------- /staging/with-unread-threads/image: -------------------------------------------------------------------------------- 1 | comments-thread-delete.png -------------------------------------------------------------------------------- /startbutton.sh: -------------------------------------------------------------------------------- 1 | python ../mozbutton_sdk/start_button.py toolbar_button.json local.json default.json 2 | -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- 1 | python ../mozbutton_sdk/build.py -b$1 -f$1.xpi toolbar_button.json local.json single.json 2 | -------------------------------------------------------------------------------- /translate.sh: -------------------------------------------------------------------------------- 1 | python ../mozbutton_sdk/build.py -v toolbar_button.json local.json translate.json 2 | -------------------------------------------------------------------------------- /webext/tb-search-bookmarks/popup/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefisher/toolbar_buttons/534e5b1c39150b769107957d5f2a38726fda7ac8/webext/tb-search-bookmarks/popup/magnifier.png -------------------------------------------------------------------------------- /webextensions.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | python3 ../mozbutton_sdk/build.py -x -p toolbar_button.json local.json webextension.json 3 | --------------------------------------------------------------------------------