Posted  by  admin

User Agent Switcher .Xml Free Download

User Agent Switcher .Xml Free Download 5,5/10 271 votes
  1. Quickly and easily switch between popular user-agent strings. We do NOT host any extensions/addons/plugins in our website, all the download links will direct you to the related Firefox, Google Chrome, Opera and Safari Addon. To see your browsers useragent, you can use many websites that offer this service for Free.
  2. The User Agent Switcher extension adds a menu and a toolbar button to switch the user agent of a browser. The extension is available for Firefox and will run on any platform that this browser supports including Windows, macOS and Linux.
  1. User Agent Switcher Mozilla
  2. User Agent Switcher Download

Extend Firefox's User Agent Switcher by Jack Wallen on April 10, 2009 in Firefox - Last Update: March 21, 2016 - 7 comments Originally written in 2009, the review of the User Agent Switcher add-on for Firefox is still as valid as it has been.

11 Jul 2017. 14 min.

Read BunsenLabs does not use a traditional desktop like KDE, GNOME or even Xfce. Instead it’s an optimized mix of components from various open source projects including most notably the lightweight Openbox window manager, tint2 panel, the Conky system monitor, and Thunar file manager. The guide is based on which serves as my main coding OS. It offers a speedy, uncluttered Debian experience which (in my opinion) is only equaled by distros as for example. Here is a rundown of how I configured BunsenLabs to best serve my needs.

1 Status of this document v1.0. 07/11/17 Initial setup. Changes since the last version: v1.1. 08/02/17 Reworked the layout.

08/03/17 Added Firefox, Gimp, Viewnior, Krita. 08/04/17 Added nftables, screenfetch, iftop, ttyload. 08/05/17 Added LibreOffice, Claws Mail, mutt. 08/07/17 Added PostgreSQL, pgAdmin. 08/08/17 Added mpd, ncmpcpp, curl, youtube-dl.

08/10/17 Added GnuPG, Sublime Text 3, Jekyll. 08/13/17 Added vim, Pathogen, gVim, Python, pip. 08/15/17 Added Git, Node.js, Ruby on Rails, Tint2. 08/17/17 Added terminator. 08/20/17 Made multiple adjustments, removed typos.

08/29/17 Added Geany-plugins, ranger, nicstat, lshw. 09/02/17 Replaced Sublime Text 3 with Atom.

09/20/17 Added Openbox. 09/28/17 Updated list with Firefox add-ons. 10/16/17 Added redshift, Openbox rounded corners patch. 10/22/17 Added newsbeuter.

2 Before you begin As a good practice, before installation I always first boot the system from Live USB or DVD and download/run to check the hardware components. In rare cases when using a WiFi connection to connect to the internet, the Pro 2200BG adapter is not recognized during setup. Just ignore any system update. Same for anything related to Bunsen repositories; after install WiFi works fine, and you can add manually in /etc/apt/sources.list.

3 Bunsen install Download the appropriate ISO (bl-Deuterium-i39.iso). Do an install from.

As soon its finished, and after reboot, you will see underneath screen asking you to update the system. When the updating is done the script will run a set of options for attaching the Debian repositories, some 3rd party multimedia plugins, printer support, Java, and adding packages for developers. Each of these options may be selected individually. 4 Productivity BunsenLabs contains a bunch of apps you can install with a simple click in the Openbox menu. Other apps are available from the repos & 3rd party sources. If so, instructions will show the appropriate commands (always run these as non-root user with privileges). Let’s start with the list.

4.1 Internet browsers. 4.1.1 Google Chrome, Firefox or Opera I made a choice for Firefox but you can install any browser next to it. Note: Top 6 add-ons: (an updated.xml file is available ). 4.2 Office. 4.2.1 LibreOffice LibreOffice Writer is the only software that comes pre-installed.

However, the remainder of the suite is just a mouse click away. Note: I don’t like the splash screen when starting LibreOffice. To get rid of it:. $ geany /etc/libreoffice/sofficerc Change Logo=1 to Logo=0 and exit. 4.2.2 Claws Mail. $ apt-get install claws-mail Claws Mail has an excellent which covers virtually all your questions. Note: If you want to send and receive mail via a terminal, Mutt (-patched) is a must.

$ apt-get install mutt # the mail user agent. $ apt-get install mutt-patched # adds sidebar, nntp support, multiple-fcc patches For a copy of my dots, see repo. For everything else,. 4.3 Graphics.

4.3.1 Gimp Obligatory. Just a click away. 4.3.2 Viewnior I don’t like the Mirage picture viewer.

Note: I am not using this, but if you are looking for a professional open source painting program with full support for graphics tablets, check out. 4.4 Multimedia apps. 4.4.1 Mpd. $ apt-get install mpd To configure mpd (Music Player Daemon), download. 4.4.2 Ncmpcpp Probably the best free ncurses mpd client available. $ apt-get install ncmpcpp. 4.4.3 YouTube-dl.

$ apt-get install # command-line tool for transferring data. $ curl -L -o /usr/local/bin/ youtube-dl. $ chmod a+rx /usr/local/bin/youtube-dl 5 Relational Databases.

5.1.1 PostgreSQL. $ apt-get install postgresql-9.4 postgresql-client-9.4 Next, read this article. 5.1.2 pgAdmin pgAdmin is a graphical administration tool for PostgreSQL. $ apt-get install pgadmin3 There are forums which discuss a version 4 install on Jessie but I prefer stable, not the latest bleeding edge. 6 Development My favs for simple coding and web site development. 6.1 Text Editors. 6.1.1 Vim.

$ apt-get install vim That’s done. Now, we will version our configuration to share across machines while keeping track of any changes made. To do this, create a.vim repository with a vimrc file:.

$ cd. $ mkdir.vim. $ cd.vim. $ touch vimrc.

$ git init. And the vimrc file.

This way we can (ab)use it while still getting all the advantages of versioning with Git. $ cd. $ ln -s /.vim/vimrc /.vimrc Next step is theming and changing the layout:. $ mkdir /.vim/colors Copy my to the colors folder.

Edit.vimrc and add this line:. colorscheme Tomorrow-Night Some syntax highlighting based on file names would be appreciated:. filetype on. filetype plugin on And text formatting:.

filetype indent on Set default font to regular with a size 17:. set guifont=Menlo Regular:h17 While we are busy also add these lines:. set lines=35 columns=150. set colorcolumn=90.

set number. syntax on Note: Now that your vim starts to look better, let’s improve how it functions. Either visit this for further customization (learn while doing), or copy my dotfile (see end of sub 6.1.1.2).6.1.1.1 Pathogen. Pathogen is a vim package manager that makes your life easier when working with vim: it’s how you can have your fuzzy finders, file trees, and coding tools without drowning in Vimscript. I prefer Pathogen to some of the alternate vim package managers because it’s arguably the most popular (every plugin these days supporting it) and it’s zero -config: just drop a vim plugin into the /.vim/bundle folder, and it’s installed. From there you can configure the /.vimrc file to your taste.

$ mkdir -p /.vim/autoload /.vim/bundle &&. $ curl -LSso /.vim/autoload/pathogen.vim Add this line to the top of your.vimrc:. execute pathogen#infect Note: See gist ‘’.6.1.1.2 Vim plugins. All plugins are on Git which makes updating to the latest version very easy, i.e. Pulling master. For every plugin you need to run:. $ cd /.vim.

$ git submodule add git@source/pluginname.git bundle/pluginname For example, adding the vim-ruby plugin:. $ git submodule add git@github.com:vim-ruby/vim-ruby.git bundle/vim -ruby Name Link Command-T NerdCommenter NerdTree Lightline Supertab Fugitive Git Gutter Bundler Endwise Ruby Rails Dispatch Multiple Cursors Note: My for activating Command-T, NerdTree and Git Gutter in.vimrc. Feeling lazy? Download my latest. 6.1.2 gVim. $ apt-get install gvim. 6.1.3 Sublime Text 3 Atom.

$ wget # //c758482.r82.cf2.rackcdn.com/sublime-textbuild-3083i386.deb. $ dpkg -i sublime-textbuild-3083i386.deb Note: is non-free. If you are willing to pay some money, you’ll get one slick source code editor. Update: I switched from Sublime to. GitHub does not offer an i386 build but luckily created one following. Must have community themes and packages: Name Link Atom-Beautify Todo-Show Expose Emmet Pigments File-icons Color-picker Language-Markdown Language-PowerShell Autocomplete-Python 6.2 Programming. 6.2.1 Python Jessie ships with both Python 2 and Python 3 pre-installed.

4 1 1 2 3 4 875 no Note: You can also disable just a single app, e.g. Update: HeadonaStick has built some experimental packages which theme Openbox with rounded corners. For a how-to, see. 9.4 Internet Browser.9.4.1 Firefox Download this homepage for Firefox. 10 Extras Packages I use on a daily basis but for whatever dark reason always forget when creating a new setup:. $ apt-get install YOU ARE DONE.

Some of the important features about User-Agent Switcher addon are listed below. This is followed by an overview about this addon. This summary contains few words about the addon, its function and features. Next is FAQ, this section is useful to get information about how this addon works in your browser. If you couldn’t find a specific answer, please fill the bug report form in this page or the contact form in the homepage to let us know about your question. Following the FAQ, is the bug report form.

It is designed to collect user feedbacks and bugs about this addon. Users can suggest improvements or feature requests through this form too. Next section is for submitting comments about this addon which uses facebook comments plugin.

The last section is dedicated to reports submitted through the GitHub website. We hope the information provided in this page, could help you get all the basics you need about this addon and enable you to have a better experience with User-Agent Switcher. Toolbar popup UI provides an easy interface to access all 26 useragents. Clicking on any UA, will change your browsers useragent immediately. The first row is for mobile useragents including, iOS, Android, Windows Phone Tizen, Symbian and Firefox mobile OS. Second row is for desktop useragents which includes Google Chrome, Opera, Firefox, Safari, MS Internet Explorer and the new Edge browser by Microsoft.

Third row is for desktop operating systems including Microsoft Windows, Linux, Mac OS, Chrome OS, IBM Warp OS/2 and Free-BSD OS. The last row in the popup UI is dedicated for the control options including a button to change the UA to its default value. And a button to edit the current UA, you can also use it to copy the current UA to the clipboard. Moreover, you can specify a particular URL or domain so that UA is only applied to that URL or domain (detailed description is written below in the FAQ section). There is also a status-bar in the popup which shows the current UA and other info as you move the mouse within the popup UI. This Addon is available for Firefox, Chrome and Opera browsers.

Having multiple useragents in your browser is a great asset. If you are a web developer, sometimes there is need to look into a site as an iOS user, or an Android devise to make sure everything is looking decent and acceptable in those devises. Moreover, some websites make look better in mobile devises while you are surfing in a desktop browser. With useragent switcher you have access to display a webpage or web element from a variety of different systems.

This means that you could display a webpage the same way that you might find it on your mobile device or from a Linux browser even if you are using Safari, Mozilla Firefox or Chrome this makes user-agent switcher one of the best tools for testing a website. Therefore, being able to switch between different useragent on the fly could be a big advantage when you are online.

User Agent Switcher Mozilla

The process for changing user-agents on-the-fly after the extension is installed in your browser is an extremely simple task. You can have up to 25 popular user-agent setups. The main features of useragent switcher are as follows.

It has a wide mobile user-agent support. In other words, useragent switcher can quickly switch between iOS, android, and other famous mobile devices. Multiple desktop browser support; you can install this browser application into almost any browser and any operating system. Whether you use Firefox, Opera, chrome or Safari, the Useragent switcher will work with your existing setup.

Quick UA change; changing between user-agents in your browser is as simple as clicking the pop-up window and selecting from 25 different listings form available user-agents. If you need to control your browser's user-agent, you should install useragent switcher today. In order to add this Addon to your browser, simply scroll to the of this page and click on the desired Browser's icon to download the extension (you will be directed to the related addon store in order to download the addon). We do NOT host any extensions/addons/plugins in our website, all the download links will direct you to the related Firefox, Google Chrome, Opera and Safari Addon Stores. What is User-Agent Switcher Addon?

User Agent Switcher Download

User-Agent Switcher is a multi-browser Addon that helps you quickly change your browsers User-Agent (UA). Simply open the toolbar-popup and click on the desired useragent, selected UA is marked with green border. There is also an option to edit any useragent from the toolbar window (described below). What are the available useragents within the toolbar-popup UI?

User Agent Switcher .Xml Free Download

There are 26 useragent to choose from. It includes six mobile useragents as following. IOS, an Apple mobile OS for iPhone/iPad devices. Android, a Google OS for various mobile devices. Windows Phone, which is a mobile OS from Microsoft for its windows-phone devices. Tizen, a new mobile OS form Samsung.

Symbian, which is an old mobile OS form Nokia (it is not used in any new mobile device anymore). Firefox OS, a new mobile OS form Mozilla Company for mobile devices. The rest are 20 desktop useragents as follows. Chrome, which is a web-browser build by Google. This useragent is available in 4 different operating systems (windows, Linux, mac and chrome-os). Opera, a web-browser build by Opera Software ASA. This useragent is available in 3 different operating systems (windows, Linux, mac).

Firefox, which is a web-browser build by Mozilla. This useragent is available in 5 different operating systems (windows, Linux, mac, chrome-os, IBM Warp OS/2).

Safari, a web-browser build by Apple. This useragent is available in 3 different operating systems (windows, Linux, mac). The last two are, Internet Explorer and Edge which are web-browsers made by Microsoft. These two useragents are available in only 1 operating systems (windows). If you want to see the useragent strings for each of these useragents, please see the last FAQ in this page. How do I check my browsers useragent? To see your browsers useragent, you can use many websites that offer this service for Free.

(Just search for 'what is my useragent' in Google or any other search engines, and follow the resulting websites). How do I switch my browser's user-agent with this extension? To change your browser useragent, simply open the toolbar-popup and select a useragent from the available 26 useragents. For mobile device useragents, you do not need to select an operating system, but for desktop machines you need to select an operating system as-well.

How to disable User-Agent Switcher? In order to completely disable this Addon, please go to your browsers addon page, find User-Agent Switcher and click on the 'Remove' button. But, if you do not want to completely remove this Addon, you can simply open the toolbar popup, and click on the 'Switch to Default' button at the bottom left corner. This way, your browsers useragent will be switched to its default value and no actions or changes will be made by this Addon. It is equivalent to disabling the Addon. How can I modify any of the default useragents? In order to modify any useragent, please open the toolbar-panel UI, then click on your desired useragent.

Once the UA is changed, click on the edit button at the bottom right corner in the popup. When you see the edit window opened, make your desired changes and click on the OK button. The UA is updated to the newly entered value. Please note, before editing any useragent make sure the new value is a valid UA, otherwise the Addon will not be able to change your browsers useragent and end up seeing errors in websites that you visit. How can I apply the useragent for a specific website or domain? If you want the selected useragent to be active on a specific website only, please open the toolbar-panel UI and enter the website address in designated field (input area in the bottom middle section).

Please note, if you add a URL in the filed such as (the Addon changes the UA only for this URL, but, if you add a domain such as (mybrowseraddon.com or www.mybrowseraddon.com) the UA will be changed for all URLs containing this domain. The difference between a URL and a domain in this Addon is, adding 'or 'or 'ftp://' at the beginning of the URL makes the string a URL. Otherwise, it sees the string as a domain. Moreover, you can separate domains and URLs by comma (i.e. Url-1, domain-1, url-2, domain-2, etc.). Another important note is, adding (.) or (allurls) instead of the URL will apply the UA to all URLs and domains.

This is the default behavior for the Addon. In other words, if you do not modify the URL field, the UA will be applied to all websites and domains. How does this Addon changes the browser useragent In order to change the UA, the Addon works in two separate modes. The first one is in web-request mode where the UA is changed before sending the headers (user-agent header) to the server. The other mode is the navigator useragent, which is changed within the page before it is loaded. This way the browser UA is completely changed for all websites. Is this Addon compatible will all versions of Firefox, Opera and Chrome Yes, it is fully compatible with all versions of modern browsers including, Firefox, Chrome and Opera.

It is also fully compatible with the new multi-process Firefox (Firefox Nightly). What are the available useragent strings? There are 26 useragent string available in this addon, below is the list of all useragents.

Please note, you can edit/update any of these strings from the toolbar popup UI once you run the Addon in your browsers. Apple iOS (iPhone) - Mozilla/5.0 (iPhone; CPU iPhone OS 802 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile Safari/600.1.4 2. Google Android (Nexus 5) - Mozilla/5.0 (Linux; U; Android 4.4.4; Nexus 5 Build/KTU84P) AppleWebkit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 3. Microsoft Windows Phone - Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0) 4. Samsung Tizen OS - Mozilla/5.0 (Linux; U; Tizen 2.0; en-us) AppleWebKit/537.1 (KHTML, like Gecko) Mobile TizenBrowser/2.0 5. Nokia Symbian - Nokia5250/10.0.011 (SymbianOS/9.4; U; Series60/5.0 Mozilla/5.0; Profile/MIDP-2.1 Configuration/CLDC-1.1 ) AppleWebKit/525 (KHTML, like Gecko) Safari/525 3gpp-gba 6.

Mozilla Firefox OS - Mozilla/5.0 (Android 4.4; Mobile; rv:18.0) Gecko/18.0 Firefox/18.0 7. Chrome Running on MS Windows - Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36 8. Chrome Running on Linux - Mozilla/5.0 (Macintosh; Intel Mac OS X 10101) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36 9. Chrome Running on Mac OS - Mozilla/5.0 (X11; Linux x8664) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36 10. Chrome Running on Chrome OS - Mozilla/5.0 (X11; CrOS i686 3912.101.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36 11.

Chrome Running on FreeBSD OS - Mozilla/5.0 (X11; FreeBSD amd64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36 12. Opera Running on Windows - Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14 13.

Opera Running on Mac OS - Opera/9.80 (Macintosh; Intel Mac OS X 10.6.8; U; fr) Presto/2.9.168 Version/11.52 14. Opera Running on Linux - Opera/9.80 (X11; Linux i686; Ubuntu/14.10) Presto/2.12.388 Version/12.16 15. Opera Running on FreeBSD OS - Mozilla/5.0 (X11; U; FreeBSD i386; zh-tw; rv:31.0) Gecko/20100101 Firefox/31.0 Opera/13.0 16. Firefox Running on Windows - Mozilla/5.0 (Windows NT 6.3; rv:36.0) Gecko/20100101 Firefox/36.04 17. Firefox Running on Mac OS - Mozilla/5.0 (Macintosh; Intel Mac OS X 1010; rv:33.0) Gecko/20100101 Firefox/33.0 18. Firefox Running on Linux - Mozilla/5.0 (X11; Linux i586; rv:31.0) Gecko/20100101 Firefox/31.0 19. Firefox Running on Chrome-OS - Mozilla/5.0 (X11; U; CrOS i686 9.10.0; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Gecko/20100101 Firefox/29.0 20.

Firefox Running on FreeBSD OS - Mozilla/5.0 (X11; FreeBSD amd64; rv:40.0) Gecko/20100101 Firefox/40.0 21. Firefox Running on IBM Warp OS/2 - Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.12) Gecko/20050922 Firefox/1.0.7 22. Safari Running on Windows - Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.20.25 (KHTML, like Gecko) Version/5.0.4 Safari/533.20.27 23.

Safari Running on Mac OS - Mozilla/5.0 (Macintosh; Intel Mac OS X 1093) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A 24. Safari Running on Linux - Mozilla/5.0 (X11; U; Linux x8664; en-us) AppleWebKit/531.2+ (KHTML, like Gecko) Version/5.0 Safari/531.20 25.

Internet Explorer Running on Windows - Mozilla/5.0 (compatible, MSIE 11, Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko 26. MS Edge Running on Windows - Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240. Submitting Bugs Your feedback goes a long way towards making this addon even better. With this Bug report form, you can submit bugs or suggest enhancements for the functionality or performance of this addon. Please note, this bug report form will be sent to the developer(s) of this addon.

You will not get an immediate or personal response at the moment. However, the developer(s) may contact you through the email address provided in this form for further clarifications or requesting additional information regarding the reported bug(s).