إظهار الرسائل ذات التسميات Firefox. إظهار كافة الرسائل
إظهار الرسائل ذات التسميات Firefox. إظهار كافة الرسائل
الخميس، 26 فبراير 2015
WhatsApp Web Client Now Available on Firefox and Opera Browsers
It's been a long time coming, but now the users of Firefox and Opera browsers don’t need to rely on the Chrome browser to access WhatsApp Web client, as the most popular smartphone messaging service has announced that the Web-based version of its service now works on Firefox and Opera web browsers too.
WHATSAPP WEB AVAILABLE FOR OPERA & FIREFOX
Almost a month ago, WhatsApp
الثلاثاء، 27 يناير 2015
Get Original IP Address Of Any User From STUN IP Address Requests For WebRTC
Get Original IP Address Of Any User From STUN IP Address Requests For WebRTC
Firefox and Chrome have implemented WebRTC that allow requests to STUN servers be made that will return the local and public IP addresses for the user. These request results are available to javascript, so you can now obtain a users local and public IP addresses in javascript. This demo is an example implementation of that.
What is STUN Server?
A STUN (Session Traversal of User Datagram Protocol [UDP] Through Network Address Translators [NATs]) server allows NAT clients (i.e. IP Phones behind a firewall) to setup phone calls to a VoIP provider hosted outside of the local network.
The STUN server allows clients to find out their public address, the type of NAT they are behind and the internet side port associated by the NAT with a particular local port. The STUN protocol is defined in RFC 3489.
The STUN protocol allows applications operating behind a network address translator (NAT) to discover the presence of the network address translator and to obtain the mapped (public) IP address (NAT address) and port number that the NAT has allocated for the application's User Datagram Protocol (UDP) connections to remote hosts. The protocol requires assistance from a third-party network server (STUN server) located on the opposing (public) side of the NAT, usually the public Internet.
Additionally, these STUN requests are made outside of the normal XMLHttpRequest procedure, so they are not visible in the developer console or able to be blocked by plugins such as AdBlockPlus or Ghostery. This makes these types of requests available for online tracking if an advertiser sets up a STUN server with a wildcard domain.
Code
Here is the annotated demo function that makes the STUN request. You can copy and paste this into the Firefox or Chrome developer console to run the test.
Get the IP addresses associated with an account
function getIPs(callback){
var ip_dups = {};
//compatibility for firefox and chrome
var RTCPeerConnection = window.RTCPeerConnection
|| window.mozRTCPeerConnection
|| window.webkitRTCPeerConnection;
var mediaConstraints = {
optional: [{RtpDataChannels: true}]
};
//firefox already has a default stun server in about:config
// media.peerconnection.default_iceservers =
// [{"url": "stun:stun.services.mozilla.com"}]
var servers = undefined;
//add same stun server for chrome
if(window.webkitRTCPeerConnection)
servers = {iceServers: [{urls: "stun:stun.services.mozilla.com"}]};
//construct a new RTCPeerConnection
var pc = new RTCPeerConnection(servers, mediaConstraints);
//listen for candidate events
pc.onicecandidate = function(ice){
//skip non-candidate events
if(ice.candidate){
//match just the IP address
var ip_regex = /([0-9]{1,3}(\.[0-9]{1,3}){3})/
var ip_addr = ip_regex.exec(ice.candidate.candidate)[1];
//remove duplicates
if(ip_dups[ip_addr] === undefined)
callback(ip_addr);
ip_dups[ip_addr] = true;
}
};
//create a bogus data channel
pc.createDataChannel("");
//create an offer sdp
pc.createOffer(function(result){
//trigger the stun server request
pc.setLocalDescription(result, function(){});
}, function(){});
}
//Test: Print the IP addresses into the console
getIPs(function(ip){console.log(ip);});
Download
Firefox and Chrome have implemented WebRTC that allow requests to STUN servers be made that will return the local and public IP addresses for the user. These request results are available to javascript, so you can now obtain a users local and public IP addresses in javascript. This demo is an example implementation of that.
What is STUN Server?
A STUN (Session Traversal of User Datagram Protocol [UDP] Through Network Address Translators [NATs]) server allows NAT clients (i.e. IP Phones behind a firewall) to setup phone calls to a VoIP provider hosted outside of the local network.
The STUN server allows clients to find out their public address, the type of NAT they are behind and the internet side port associated by the NAT with a particular local port. The STUN protocol is defined in RFC 3489.
The STUN protocol allows applications operating behind a network address translator (NAT) to discover the presence of the network address translator and to obtain the mapped (public) IP address (NAT address) and port number that the NAT has allocated for the application's User Datagram Protocol (UDP) connections to remote hosts. The protocol requires assistance from a third-party network server (STUN server) located on the opposing (public) side of the NAT, usually the public Internet.
Additionally, these STUN requests are made outside of the normal XMLHttpRequest procedure, so they are not visible in the developer console or able to be blocked by plugins such as AdBlockPlus or Ghostery. This makes these types of requests available for online tracking if an advertiser sets up a STUN server with a wildcard domain.
Code
Here is the annotated demo function that makes the STUN request. You can copy and paste this into the Firefox or Chrome developer console to run the test.
Get the IP addresses associated with an account
function getIPs(callback){
var ip_dups = {};
//compatibility for firefox and chrome
var RTCPeerConnection = window.RTCPeerConnection
|| window.mozRTCPeerConnection
|| window.webkitRTCPeerConnection;
var mediaConstraints = {
optional: [{RtpDataChannels: true}]
};
//firefox already has a default stun server in about:config
// media.peerconnection.default_iceservers =
// [{"url": "stun:stun.services.mozilla.com"}]
var servers = undefined;
//add same stun server for chrome
if(window.webkitRTCPeerConnection)
servers = {iceServers: [{urls: "stun:stun.services.mozilla.com"}]};
//construct a new RTCPeerConnection
var pc = new RTCPeerConnection(servers, mediaConstraints);
//listen for candidate events
pc.onicecandidate = function(ice){
//skip non-candidate events
if(ice.candidate){
//match just the IP address
var ip_regex = /([0-9]{1,3}(\.[0-9]{1,3}){3})/
var ip_addr = ip_regex.exec(ice.candidate.candidate)[1];
//remove duplicates
if(ip_dups[ip_addr] === undefined)
callback(ip_addr);
ip_dups[ip_addr] = true;
}
};
//create a bogus data channel
pc.createDataChannel("");
//create an offer sdp
pc.createOffer(function(result){
//trigger the stun server request
pc.setLocalDescription(result, function(){});
}, function(){});
}
//Test: Print the IP addresses into the console
getIPs(function(ip){console.log(ip);});
Download
السبت، 22 نوفمبر 2014
Yahoo Replaces Google as Firefox's Default Search
Just from the coming December, Mozilla Firefox will utilize Yahoo search engine as a default, only in the United States on cell phone as well as desktop. On account of this five-year agreement, Yahoo will also start a new search experience in favor of the users of Firefox in the U.S. that would simultaneously make this Firefox to move away from Google.
Such a new kind search experience will provide a clear, fresh and immersive layout that reveals input from the Mozilla group. In Russia, Firefox will employ Yandex Search, while in China this will make use of Baidu as its default. On the other hand, Google, and a lot of other search engines like DuckDuckGo will stay as integral options.
Reasons for changing the partnership-
The Mozilla Company has long earned most of its funds by means of its joint venture with Google that has always been seen as default in Mozilla. In fact, in 2012, information known from a reliable source reveals that 88 percent of Firefox’s revenue came mainly from Google. The deal with Google was going to terminate this year, although, and it seem as either Yahoo has made an offer that Mozilla cannot reject or Google planned to walk away from the contract.
Opinion of Mozilla
CEO of Mozilla, Chris Beard stated that Google has been the default search engine of Firefox global since the year 2004. The renewal time of the deal is in this year, and hence Mozilla took it as a chance to assess its competitive approach and investigate the options. He even added that his company is really eager to work with Yahoo to get a new, expected search experience of Yahoo to the Firefox users in the particular country featuring the best of the Web, and to discover new modern search experience along with the content.
Statements from Yahoo
Similarly, CEO of Yahoo, Marissa Mayer recently perceived that she thinks that search is really a point of investment, prospect and development for the company. Such a joint venture aids to increase their success in search and even provides with an opportunity to serve closely along with Mozilla to get ways to create something more in search matter, communications as well as digital content.
Yahoo engine, in its present form, is supported by Microsoft Bing, certainly, although the company largely alters the results it obtains from Microsoft, in terms of design and in terms of status. There have long been gossips that Yahoo might end this agreement and return back its own particular search engine; however that appears improbable
This collaboration with Firefox will definitely provide Yahoo and even Microsoft a more powerful dominance in the search market. When Firefox usage has turned down over some of the previous years, this yet accounts for minimum 15percent of the browser market in the US. Yahoo at present possesses nearly 10 percent of the search engine of US market. To return back to the Google as default is only a matter of some seconds though some of the users want to go for the default.
الأحد، 9 نوفمبر 2014
Mozilla Developing a Browser for Web Designers
If reports have to be believed then Mozilla is expected to unveil their new browser on the 10th of November however failed to provide any further details.
The main attraction is the fact that this new browser is that it is a browser developed for developers and developed by developers. All the developers have to do is to sign up to receive an email regarding the update once the browser is available in the market.
The Mozilla is a non-profit organization founded in the year 2003 and the company who is dedicated towards maintenance of the open-source and free software which are mainly used for accessing the internet.
What’s new about the browser?
This new browser is said to be based on Firefox and expected to have all the debugging capabilities apart from the special tools like Firefox Tools Adapter and WebIDE for getting the coding rights in the browser.
The advantage of WebIDE is the fact that it allows new apps to be created by the developers, for the web, as they have to use a blueprint and not depend on anything to be started from scratch. The next advantage that will be received by the developers is fact that the tool will enable them to create, edit and test their applications and that too inside the browser.
The adapter of the Firefox has an add-on feature which enables it to be able to connect to other browsers as well. According to Mozilla, the desktop environment can be used by the developers to work on smaller screen devices simultaneously.
Build by developers for the developers!!
According to the blog posted by Mozilla, this new browser which was developed by the developers and for the developers has its own advantage.
This browser will allow the developers to debug the entire web and in turn making you get the ultimate experience of the web. The blog highlights the fact that the browser has some powerful integrating system which will allow the integration of the Firefox Tools Adapter and other new tools like that off WebIDE.
According to the blog the developers have more exciting things to wait for which includes additions of more to the current package. Mozilla came up with an exciting idea of releasing a teaser video of what the developers has in-stored for everyone through this browser.
Market giants like Mozilla and Google have basically released browsers which are targeting the developers and some of the examples of Firefox Aurora channels and the nightly Chromium.
Although, these releases were primarily meant as the early versions and part of the consumer releases, but they came with the aim of keeping the web developers in the loop and also to be prepared for the upcoming features and standard.
According to Mozilla, this new browser will be aiming to spotlight on interfaces and the browser-tools to experience faster web advancement. The main thought of Mozilla is to develop something unique, but at the same time familiar browser.
الأربعاء، 23 يوليو 2014
Firefox Apps being Repackaged by Mozilla to Make them Usable by all Android Users!
About Mozilla
Mozilla is a well-known company, which is a part of the free software community. It is popular for making the widely used browser- Mozilla Firefox.
This community is known to use, develop, advertise and support Mozilla products. It thus promotes availability of free software and open standards having nearly negligible exceptions. The Mozilla community is institutionalised under the Mozilla Foundation.
Apart from the browser, Mozilla has also produced Thunderbird, Firefox OS for mobile devices, Firefox Mobile, Bugzilla, i.e. the system used to track down web bugs.
About repackaging Firefox OS apps for Android:
This company has now undertaken the endeavour of repackaging Firefox OS apps to make them compatible with and usable in the Android platform.
Mozilla aims to make Web apps and Open Web Apps the epicentre of smart phone experience by making use of the Firefox OS.The devices with the Firefox OS is cheaper than other modern day smart phones. Survey says that Android is the most popularly used mobile phone OS.
By repackaging the Firefox apps for the android platform, the company is delving into a new realm. Previously, it had already made packages of the Firefox OS apps to suit the desktop OS such as Windows, OS X, and Linux etc. It is their first attempt in repackaging for mobile OS.
It has already launched the repackaged apps. All the users of the repackaged Firefox OS apps in android platform are able to download and install the apps from the Firefox Marketplace. These apps will behave like all other commonly used Android Apps.
A developer gets the provision of making his own personally customised Open Web App for Firefox OS devices and make that app available to millions of users of Firefox for Android users all over the world. The developer does not have to change a single line of code, making his task so much more user.
To install and use apps that have been repackaged, the user has to allow unknown sources to make the installation of the app.
The repackaged apps have been built using HTML5. They are different from the native apps found normally on Android, iOS or Windows platform. At the initiation of making Firefox IS, Mozilla made use of Boot 2 Gecko.
Get yourself acquainted with the company's plans and undertakings:
The Mozilla Company has expressed its wish to make the Firefox OS apps compatible with the iOS platform too.
But the iOS platform does not possess the option of installing a web browser that is Gecko-based. This sort of web browser is essential for support Open Web Apps and its unavailability is preventing the repackaging of the Firefox apps in the iOS platform.
So that iOS compatibility can be achieved, Mozilla has collaborated with Apache Cordova. Mozilla has been reported to have signed deals with companies in India and Taiwan so that it can market its devices in these countries.
الاثنين، 16 يونيو 2014
Firefox 31 Beta with More Tools for Developers
Firefox 30 final version has just now released and Mozilla shifted attention to Firefox 31, which replaces its predecessor in the distribution channel beta browser. Firefox 31 focuses in particular on tools for developers. Users will also be entitled to some new things.
A search field will be added to the new tab page, and Firefox will open directly pdf, ogg and more. On Windows if no default application takes over, The Next Web notes from the release notes for Firefox 31. In the blog dedicated to news for developers, however there are many more improvements.
Two new debugging tools are introduced, for example one can dedicate the add-ons and other elements to canvas. The Debugger add-on will add a "Debug" button at any add-on that does not require a restart to install it says Mozilla. Must obviously be the module author to gain access to it. A video was posted on Vimeo to explain the operation.
The Debugger Canvas "allows developers to register and in their image scroller code image" from a 2D or 3D animation they created. The editor, seen in the video, resembles the classic debugging tools of Firefox.
In Mobile applications, we note in particular the arrival of Firefox Hub API, an environment that allows developers to add their content directly on the home page of Firefox for Android, as well as performance improvements and stability APK Factory.
Finally, little more dedicated to web design can seems, but can provide a productivity gain interesting every day. In the color picker, a pipette will now allow you to copy the color code of any pixel on the screen. The feature that already existed in the form of add-ons but now take in.
الجمعة، 21 مارس 2014
Firefox 29 Beta With New Interface Released!
Mozilla has released Firefox 29 in a first beta version, which already shows the new Australia interface. In addition to new tabs, especially the look of buttons and dialogs of the browser have been changed. In addition, the synchronization service of Firefox Sync is included. The new interface does away with the user interface and reduces the number of continuously visible buttons.
First, the tabs have been greatly changed and slide close to the upper edge of the browser. This saves space for the actual web page content. The active tab has strongly curved edges, while the outlines of the remaining riders are only hinted at and only then visually distinguished when the user moves the mouse over a tab. This affects the surface much tidier without the user mentioned in unknown territory.
Changes also have made in the shortcuts for the bookmarks, downloads, the home page and the main menu will be displayed. You are migrated next to the Google search bar to the right edge. The main menu has undergone the greatest changes and now shows for the first time in the desktop versions buttons for cut, copy, and paste elements.
In addition, new private and browser windows can be opened, saved pages, can take print of them. Also, the add-on sub menus and the developer tools are found in the same window. The Firefox cloud services under the name Sync and Profiles in the Cloud also can be accessed from the menu. With them, browser settings can be kept in sync together with bookmarks across multiple devices.
Anyone wants to use the new sync function, requires a new account. The final version of Firefox 29 will be release on 29 April 2014 The Firefox 29 Beta is available for Linux, Windows and OS X for download. In Google Play also the Beta version for Android has been released and available now.
First, the tabs have been greatly changed and slide close to the upper edge of the browser. This saves space for the actual web page content. The active tab has strongly curved edges, while the outlines of the remaining riders are only hinted at and only then visually distinguished when the user moves the mouse over a tab. This affects the surface much tidier without the user mentioned in unknown territory.
Changes also have made in the shortcuts for the bookmarks, downloads, the home page and the main menu will be displayed. You are migrated next to the Google search bar to the right edge. The main menu has undergone the greatest changes and now shows for the first time in the desktop versions buttons for cut, copy, and paste elements.
In addition, new private and browser windows can be opened, saved pages, can take print of them. Also, the add-on sub menus and the developer tools are found in the same window. The Firefox cloud services under the name Sync and Profiles in the Cloud also can be accessed from the menu. With them, browser settings can be kept in sync together with bookmarks across multiple devices.
Anyone wants to use the new sync function, requires a new account. The final version of Firefox 29 will be release on 29 April 2014 The Firefox 29 Beta is available for Linux, Windows and OS X for download. In Google Play also the Beta version for Android has been released and available now.
الخميس، 20 مارس 2014
Firefox 28 Is Available Now!
After few hours of announcing that they stopped the development of a version of Firefox for Windows touch interface Metro 8.x, Mozilla Foundation has just made available for download the 28.0 version of their browser. This is necessarily very lightweight version with more novelties.
The most interesting news for the start of the new Firefox 28 concerns once again the absence of an announced feature. Available for Windows, MacOS and Linux, this new version does not offer any changes in its interface. And the rest of the additions can be counted on the fingers of one hand.
Besides the usual performance improvement and correction of security holes, Mozilla Launches Firefox 28 with VP9 video codec, audio codec Opus and a finalized version of the Gamepad API programming interface to associate a joystick browser. New to Firefox 28 is the support of VP9. The priority was developed by Google video codec promises to consume only half as much data at the same quality.
YouTube has - not surprisingly - announced to set for the streaming of 4K content on VP9. The Firefox browser is henceforth able to video (WebM) with soundtracks in Opus format reproduce. On HTML5 pages there is a new volume control for audio and video playback.
In addition to various security updates, the new version promises to support the message center for web notifications for Mac OS X. In addition, Firefox 28 for Android should incorporate new buttons like “Quickshare" to simplify information sharing.
The most interesting news for the start of the new Firefox 28 concerns once again the absence of an announced feature. Available for Windows, MacOS and Linux, this new version does not offer any changes in its interface. And the rest of the additions can be counted on the fingers of one hand.
Besides the usual performance improvement and correction of security holes, Mozilla Launches Firefox 28 with VP9 video codec, audio codec Opus and a finalized version of the Gamepad API programming interface to associate a joystick browser. New to Firefox 28 is the support of VP9. The priority was developed by Google video codec promises to consume only half as much data at the same quality.
YouTube has - not surprisingly - announced to set for the streaming of 4K content on VP9. The Firefox browser is henceforth able to video (WebM) with soundtracks in Opus format reproduce. On HTML5 pages there is a new volume control for audio and video playback.
In addition to various security updates, the new version promises to support the message center for web notifications for Mac OS X. In addition, Firefox 28 for Android should incorporate new buttons like “Quickshare" to simplify information sharing.
الجمعة، 21 فبراير 2014
الثلاثاء، 18 فبراير 2014
Lightbeam for Firefox (Shows the First and Third Party Interaction on the Web)
Lightbeam is a Firefox add-on that enables you to see the first and third party sites you interact with on the Web. Using interactive visualizations, Lightbeam shows you the relationships between these third parties and the sites you visit.
Using interactive visualizations, Lightbeam enables you to see the first and third party sites you interact with on the Web. As you browse, Lightbeam reveals the full depth of the Web today, including parts that are not transparent to the average user. Using three distinct interactive graphic representations — Graph, Clock and List — Lightbeam enables you to examine individual third parties over time and space, identify where they connect to your online activity and provides ways for you to engage with this unique view of the Web.
How Lightbeam Works ::
When you activate Lightbeam and visit a website, sometimes called the first party, the add-on creates a real time visualization of all the third parties that are active on that page. The default visualization is called the Graph view. As you then browse to a second site, the add-on highlights the third parties that are also active there and shows which third parties have seen you at both sites. The visualization grows with every site you visit and every request made from your browser. In addition to the Graph view, you can also see your data in a Clock view to examine connections over a 24-hour period or in a List view to drill down into individual sites.
How You Can Use Lightbeam to Help Us Illuminate the Inner Workings of the Web ::
As a part of Lightbeam, we're creating a big-picture view of how tracking works on the Internet, and how third-party sites are connected to multiple other sites. You may contribute your data to our crowdsourced directory by simply turning on the share switch within the add-on. To disable crowdsourcing, you can turn it off at any time. You can view your local data stored within Lightbeam at any time, or save your data by clicking the "Save" button under the data section on the left side of the add-on.
How is my information stored? ::
As a default, all info generated and used for Lightbeam’s visualizations and features are only stored locally on your computer. You can save a copy of your connection history at any time, which is also where you can see the specific data collected by the add-on. You may also reset Lightbeam to erase your locally stored connection history, disable it to stop data collection or uninstall it to instantly remove all locally stored data related to Lightbeam.
Video Tutorial ::
Video Tutorial ::
Download :: Available at Mozilla Addons Store
الأربعاء، 12 فبراير 2014
Advertisement In Firefox Soon!
The Mozilla Foundation plans to introduce ads into the "new tab" in the browser space. These advertisements appear alongside of the Firefox users’ content.
This is a revolution taking place at Mozilla. The Foundation has announced that it would introduce advertising in its Firefox browser. Attending the annual meeting of the Interactive Advertising Bureau (IAB), Darren Herman, vice president in charge of services and income diversification in Mozilla, presented the “Directory Tiles " concept.
When first using Firefox: opening Firefox in a new tab, it will have 9 empty tiles that appear thereafter most visited web sites. The objective is to use these spaces by displaying advertising and preloaded such websites specific to certain geographic areas.
The ads will be stamped so that there is no ambiguity for users. Mozilla says it is trying to introduce the concept of Tiles Directory advertisers but gives no specific date for its introduction.
This diversification is an important step for Mozilla whose revenues are 97% of its agreements with the search engines, especially Google.
This is a revolution taking place at Mozilla. The Foundation has announced that it would introduce advertising in its Firefox browser. Attending the annual meeting of the Interactive Advertising Bureau (IAB), Darren Herman, vice president in charge of services and income diversification in Mozilla, presented the “Directory Tiles " concept.
When first using Firefox: opening Firefox in a new tab, it will have 9 empty tiles that appear thereafter most visited web sites. The objective is to use these spaces by displaying advertising and preloaded such websites specific to certain geographic areas.
The ads will be stamped so that there is no ambiguity for users. Mozilla says it is trying to introduce the concept of Tiles Directory advertisers but gives no specific date for its introduction.
This diversification is an important step for Mozilla whose revenues are 97% of its agreements with the search engines, especially Google.
السبت، 8 فبراير 2014
Mozilla releases Tile Based Firefox 28 Beta for Windows 8 Touch
Mozilla has released a beta version of Windows 8 App of Firefox 28. This is adjusted to Microsoft Modern Metro and optimized for touch operation, so that it is of particular interest to focus on Windows 8 tablets. Firefox for Windows 8 Touch, Mozilla calls it as the latest beta version of Firefox 28, which is available as a Windows 8 App.
Thus it differs from the standard Windows Desktop version of Firefox. The typical swiping Windows 8.x as well as pinch-to- zoom are supported, so that with a finger gesture you can move over comfortably into the website, you can zoom in and can be zoom out. The version is therefore primarily intended for owners of Windows 8 tablets or devices with a touch screen.
" Touch Firefox Beta for Windows 8 has a home screen with direct access to favorites and browsing history. Other features of Firefox, such as the Awesome Bar are always available, “said Mozilla in a statement. The beta version works normally in full screen mode, but can also be placed on the relevant Windows functions in addition to another app, so that both can be viewed simultaneously.
The Metro version of Firefox will bookmark important pages and the course in the form of tiles to blend into the design guidelines from Microsoft. Thus, the operation of the browser should be easier Mozilla promises. The Firefox browser dominates the Windows parts function, so that web pages can be passed on to other apps also. It enables users to use the Metro version of Firefox, must be made Firefox the default browser for Windows 8.
For in the Modern UI world can always use only one browser. Once that's done, a matching Firefox tile is on the home screen of Windows 8 or Windows 8.1. The beta version uses the same browser engine that is also used in the Windows desktop version of Firefox. In the current version of Firefox, the Gamepad API is enabled, VP9 video decoding and Opus in WebM is supported and there is a volume control for HTML5-Audio/-Video.
Under Mac OS X the Notification Center is used for web notification. Since March 2012 Mozilla is working on developing a browser for the new Modern UI interface of Windows 8 alias called Windows 8.1. A first pre-release version of Firefox as Windows 8 app was released in September 2013. Mozilla provides the beta version of Firefox for Windows 8 Touch free to download.
Thus it differs from the standard Windows Desktop version of Firefox. The typical swiping Windows 8.x as well as pinch-to- zoom are supported, so that with a finger gesture you can move over comfortably into the website, you can zoom in and can be zoom out. The version is therefore primarily intended for owners of Windows 8 tablets or devices with a touch screen.
" Touch Firefox Beta for Windows 8 has a home screen with direct access to favorites and browsing history. Other features of Firefox, such as the Awesome Bar are always available, “said Mozilla in a statement. The beta version works normally in full screen mode, but can also be placed on the relevant Windows functions in addition to another app, so that both can be viewed simultaneously.
The Metro version of Firefox will bookmark important pages and the course in the form of tiles to blend into the design guidelines from Microsoft. Thus, the operation of the browser should be easier Mozilla promises. The Firefox browser dominates the Windows parts function, so that web pages can be passed on to other apps also. It enables users to use the Metro version of Firefox, must be made Firefox the default browser for Windows 8.
For in the Modern UI world can always use only one browser. Once that's done, a matching Firefox tile is on the home screen of Windows 8 or Windows 8.1. The beta version uses the same browser engine that is also used in the Windows desktop version of Firefox. In the current version of Firefox, the Gamepad API is enabled, VP9 video decoding and Opus in WebM is supported and there is a volume control for HTML5-Audio/-Video.
Under Mac OS X the Notification Center is used for web notification. Since March 2012 Mozilla is working on developing a browser for the new Modern UI interface of Windows 8 alias called Windows 8.1. A first pre-release version of Firefox as Windows 8 app was released in September 2013. Mozilla provides the beta version of Firefox for Windows 8 Touch free to download.
الأربعاء، 5 فبراير 2014
Firefox 27 Available Now
The Firefox 27 is available now with improved security and with good support for social options. The Firefox 27.0 version is now available through the usual channels. The new version brings no apparent changes but more changes are there in its engine.
Security is again in the spotlight with the activation of TLS (Transport Layer Security) protocol that is intended to replace the old SSL (Secure Sockets Layer) for the enhanced security. In terms of new features, the Mozilla Foundation announced that it has strengthened the social interactions from third party applications.
In the previous year, Mozilla has announced that the Facebook is one of their pillars of social integration, and it was fulfilled today hence the user may be connected in an enhanced security with the social media in this version. And 'Delicious' will allow the users to share their links easily within the Delicious network.
"Delicious backup and organizes all your favorites while you surf the web content - you can easily find this content in the Firefox sidebar. Saavn, the music sharing service is now integrated its side through a Firefox sidebar to view a music stream. Social may give a boost to a slowing Firefox!
الجمعة، 10 يناير 2014
6 Highly Useful Mozilla Firefox Tips and tricks to improve your Browsing Experience
Do you prefer Firefox than other browser? Then this Browser is really cool and effective one to deal with!
Tips and tricks In Order improve your Browsing Experience:
1. Yank your Firefox Screen for Optimal Use
• To reduce Size of your Icons to Get More Screen Space Right-Click the empty space and Select Customize. You will immediately find “Use Small icons”. The preview change may happen by checking and un checking to find out the best one.
• You can easily increase the Text Size of your Web Page By using Ctrl & + and Ctrl & - you may increase or decrease text size. Ctrl & 9 Reset them to default size.
• Use F11 to fill the entire webpage and Press once again to previous mode.
1. Create Keywords for Important BookMarked Sites You can fast get to bookmarked pages at a faster mode by creating shortcut keys. For instance got to bookmark items, right-click specified bookmark and select “Properties”. Enter the shortcut key to browse faster.
2. Key Board Shortcut keys for Firefox
• Keyboard Space bar to Scroll Faster
• Use Ctrl + Shift + B and Ctrl + Shift + H to open Bookmark and History page.
• Ctrl + F to open Find box to locate words and phrases easily.
• Use Ctrl + Shift + Delete for clearing the Browsing History.
3. Move At a much Faster Rate with Firefox
• Ctrl + Tab to skip from one tab to another
• Ctrl + (1 to 9) to move to specific Tabs in your browser.
• Ctrl + T for New Tab • Ctrl + N for New Windows.
• Shift + Ctrl + T to unknot Close tab. (Revive Closed Tab)
• Ctrl W to close an Open Tab. (Close the Current Tab)
4. Utilize Firefox Address and Search Bars to Browse Faster
• Bring into play Ctrl + D to open Up Bookmark Window.
• Bring into play Ctrl + K for highlighting Search Bar.
• Bring into play Ctrl + L for highlighting Location Bar.
a. Complete a web address using Ctrl + Enter for (www and .com).
b. Complete a Web address using Shift + Enter for (www and .net).
c. Complete a Web address using Ctrl + Shift + Enter for (www and .org).
5. How to swiftly locate precise Tab on Firefox
• Ctrl + Shift + E for creating “Tab Groups”. This would display the tab as Thumbnails. It is your wish to select anyone of them.
• Utilize % in URL to know what Tabs are open. It Provide the list of Tabs.
A brief Explanation of Trips and Tricks
This would have let you some knowledge on Firefox. People usually think Firefox as little tougher to use, but rather it is more when you know the shortcut keys available in them. If you keep on using this you might turn out to be expert in using Firefox. So these are the Tricks and tips to deal up with Firefox.
Tips and tricks In Order improve your Browsing Experience:
1. Yank your Firefox Screen for Optimal Use
• To reduce Size of your Icons to Get More Screen Space Right-Click the empty space and Select Customize. You will immediately find “Use Small icons”. The preview change may happen by checking and un checking to find out the best one.
• You can easily increase the Text Size of your Web Page By using Ctrl & + and Ctrl & - you may increase or decrease text size. Ctrl & 9 Reset them to default size.
• Use F11 to fill the entire webpage and Press once again to previous mode.
1. Create Keywords for Important BookMarked Sites You can fast get to bookmarked pages at a faster mode by creating shortcut keys. For instance got to bookmark items, right-click specified bookmark and select “Properties”. Enter the shortcut key to browse faster.
2. Key Board Shortcut keys for Firefox
• Keyboard Space bar to Scroll Faster
• Use Ctrl + Shift + B and Ctrl + Shift + H to open Bookmark and History page.
• Ctrl + F to open Find box to locate words and phrases easily.
• Use Ctrl + Shift + Delete for clearing the Browsing History.
3. Move At a much Faster Rate with Firefox
• Ctrl + Tab to skip from one tab to another
• Ctrl + (1 to 9) to move to specific Tabs in your browser.
• Ctrl + T for New Tab • Ctrl + N for New Windows.
• Shift + Ctrl + T to unknot Close tab. (Revive Closed Tab)
• Ctrl W to close an Open Tab. (Close the Current Tab)
4. Utilize Firefox Address and Search Bars to Browse Faster
• Bring into play Ctrl + D to open Up Bookmark Window.
• Bring into play Ctrl + K for highlighting Search Bar.
• Bring into play Ctrl + L for highlighting Location Bar.
a. Complete a web address using Ctrl + Enter for (www and .com).
b. Complete a Web address using Shift + Enter for (www and .net).
c. Complete a Web address using Ctrl + Shift + Enter for (www and .org).
5. How to swiftly locate precise Tab on Firefox
• Ctrl + Shift + E for creating “Tab Groups”. This would display the tab as Thumbnails. It is your wish to select anyone of them.
• Utilize % in URL to know what Tabs are open. It Provide the list of Tabs.
A brief Explanation of Trips and Tricks
This would have let you some knowledge on Firefox. People usually think Firefox as little tougher to use, but rather it is more when you know the shortcut keys available in them. If you keep on using this you might turn out to be expert in using Firefox. So these are the Tricks and tips to deal up with Firefox.
الاشتراك في:
الرسائل (Atom)












