Skip to main content

Home/ Coders/ Group items tagged firefox

Rss Feed Group items tagged

Sean Hardy

Getting Started with Firefox extension - Diigo help - 2 views

  •  Feature Highlight: Highlights Diigo saves the day with "highlights". Highlights let you select the important snippets on a page and store them in your library with the page's bookmark. Let's try it. Just open a page, maybe one of your old-school bookmarks or one of your new cat bookmarks, and find the information on that page you actually care about. Select that important text. Got it? Okay, now put your hemet on, 'cause this might blow your mind! Click the highlight icon on the Diigo toolbar. It's the one with the "T" on a page with a yellow highlighter. You will notice that the selected text gets a yellow background. This means that the text has been saved in your library, and as long as you have the Diigo add-on the text will be highlighted on the page! How's that for easy?   Now you've highlighted the text. It will appear in your library within the bookmark for the page it is on. Go to your library and you can see how it works. If you're not sure how to get to your library, just click the second icon on the toolbar (Diigo icon to the left of the search bar) and then select "My Library »".
  • Sticky Notes on the Web What? I can put a sticky note on a web page? How? Oh, that's right! Diigo. Just right-click anywhere on the page and choose to "add a floating sticky note". Type up your note and choose "Post", then move the note anywhere on the page. You have to type a note first, before you move it where you want, otherwise there's nothing to move!
  •  Feature Highlight: Highlights Diigo saves the day with "highlights". Highlights let you select the important snippets on a page and store them in your library with the page's bookmark. Let's try it. Just open a page, maybe one of your old-school bookmarks or one of your new cat bookmarks, and find the information on that page you actually care about. Select that important text. Got it? Okay, now put your helmet on, 'cause this might blow your mind! Click the highlight icon on the Diigo toolbar. It's the one with the "T" on a page with a yellow highlighter. You will notice that the selected text gets a yellow background. This means that the text has been saved in your library, and as long as you have the Diigo add-on the text will be highlighted on the page! How's that for easy?   Now you've highlighted the text. It will appear in your library within the bookmark for the page it is on. Go to your library and you can see how it works. If you're not sure how to get to your library, just click the second icon on the toolbar (Diigo icon to the left of the search bar) and then select "My Library »".
  • ...1 more annotation...
  • Sticky Notes on the Web What? I can put a sticky note on a web page? How? Oh, that's right! Diigo. Just right-click anywhere on the page and choose to "add a floating sticky note". Type up your note and choose "Post", then move the note anywhere on the page. You have to type a note first, before you move it where you want, otherwise there's nothing to move!
Joel Bennett

Mozilla Labs » Announcing the Jetpack SDK - 4 views

  • The Jetpack SDK includes: An extensible library of capabilities and APIs for writing Firefox add-ons, as well as stand-alone web-based applications A set of command-line tools that package and security-harden your code into distributable packages A modern IDE with built-in reference guide for instant productivity
  • An easy to use, well documented set of APIs that lets you write Firefox add-ons using standard Web technology (Javascript, HTML5, and CSS). An integrated IDE that enables rapid add-on developement and code collaboration.
  • Add-ons developed with the Jetpack SDK will feature: No need to restart Firefox to install add-ons. Add-ons are automatically compatible with all future versions of Firefox updates, so no need to wait for add-on compatability. Stronger and more easily understood security and privacy controls. Automatic add-on updates.
  •  
    An easy to use, well documented set of APIs that lets you write Firefox add-ons using standard Web technology (Javascript, HTML5, and CSS).
Pooja Runija

Apple and FireFox ditching Google as its default search engine - 0 views

  •  
    This is really an embarrassing week for Google due to some breakups with their partners. Few days back news came from Mozilla Firefox that from 2015 Yahoo will be their default search engine. Google has been the default search engine for Mozilla since 2004 but this time in the year of renewal Mozilla has decided to break the pact and chosen to go with Yahoo.
Joel Bennett

Microsoft Watch - Web Services & Browser - Internet Explorer: A Browser Breaks - 0 views

  • Enterprise IE adoption dropped from 88.7 percent to 78.7 percent in 2007 with gains mainly going to Firefox, according to a new report
  • Firefox's overall enterprise adoption nearly doubled, to 18 percent, in 2007. IE 7's share climbed from about 10 percent to near 30 percent during the same time frame.
    • Joel Bennett
       
      So Firefox doubles, and IE7 triples, and somehow this is a bad thing for IE? I'm confused.
  •  
    IE6 is at 70% in enterprises, and IE7 at 30% ... and yet, according to Microsoft Watch, Firefox is at 18% and Safari at 2.4% How can this be?
Rick Fan

Creating OpenSearch plugins for Firefox - MDC - 0 views

  • Your server should serve OpenSearch plugins using the MIME type application/opensearchdescription+xml. Be sure that your Search Plugin XML is well formed. You can check by loading the file directly into Firefox. Ampersands in the template URL need to be escaped with & and tags need to be closed with a trailing slash or matching end tag. The xmlns attribute is important, without it you could get an error message indicating that "Firefox could not download the search plugin from: (URL)". Note that you must include a text/html URL — search plugins including only Atom or RSS URL types (which is valid, but Firefox doesn't support) will also generate the "could not download the search plugin" error. Remotely fetched favicons must not be larger than 10KB
Joel Bennett

Drag and Drop Web Parts - 0 views

  •  
    Drag and drop ASP.NET 2.0 Web Parts in Firefox and Safari with ASP.NET AJAX The beta 2 release of the asp.net ajax library brings drag and drop support for ASP.NET 2.0 Web Parts in both Safari and Firefox. DND support has been around for Firefox since the Atlas March CTP. However, it was accidentally left out of the beta 1 release of asp.net ajax. Now it's back with additional support for Safari.
  •  
    Geniuzz.com es una pequeña sitios de trabajo. Este sitio está dedicado a todos los españoles están buscando trabajadores con un precio muy bajo. Si usted contrata a un trabajador de aquí. Te garantizo que es muy satisfactorio. Si eres un webmaster o BPA jugadores que necesitan ayuda. Acaba de llegar al mercado muy amable. Y yo también le ayudará. Por favor visite mi puesto aquí https://www.facebook.com/pages/Geniuzzcom/525081180900419
Joel Bennett

Why Verbs? « Not The User's Fault - 0 views

  •  
    expressiveness: Hey Firefox? Select this page, translate it to Spanish, encrypt it with my mom's public key, email it to her, and oh yeah save this chain of commands as a new command so I can use it later.
Rick Fan

Setting up extension development environment - MDC - 0 views

  • javascript.options.showInConsole = true. Logs errors in chrome files to the Error Console. nglayout.debug.disable_xul_cache = true. Disables the XUL cache so that changes to windows and dialogs do not require a restart. This assumes you're using directories rather than JARs. Changes to XUL overlays will still require reloading of the document overlaid. browser.dom.window.dump.enabled = true. Enables the use of the dump() statement to print to the standard console. See window.dump for more info. You can also use nsIConsoleService from privileged script. javascript.options.strict = true. Enables strict JavaScript warnings in the Error Console. Note that since many people have this setting turned off when developing, you will see lots of warnings for problems with their code in addition to warnings for your own extension. You can filter those with Console2. extensions.logging.enabled = true. This will send more detailed information about installation and update problems to the Error Console.
Rick Fan

Updating extensions for Firefox 3.1 - MDC - 0 views

  • The textbox type timed is deprecated; instead, you should use search.
  • The JSON.jsm JavaScript module was dropped in Firefox 3.1 in favor of native JSON object support
  • if (typeof(JSON) == "undefined") {    Components.utils.import("resource://gre/modules/JSON.jsm");    JSON.parse = JSON.fromString;    JSON.stringify = JSON.toString;  }  
Joel Bennett

Javscript Lint - 0 views

  •  
    JavaScript Lint based on the JavaScript engine from Firefox ... check JavaScript syntax, examine coding techniques, and warn against questionable practices. Has online and dowloadable versions you can run from your IDE or CLI.
Joel Bennett

Trakkor - No-frills web page change tracking. - 0 views

  •  
    Trakkor lets you create a tracker for just a single DOM element given by an XPath and informs you via Atom feed if it changes. Would be cooler if it was a firefox plugin, but ... maybe we could use this on TOSes
objectivist ursilly

Build Your Own Firefox Extension - SitePoint Books - 1 views

  •  
    IDE & Manual
David Corking

Twitter XSS Strikes Again | SophosLabs blog | April 18 2009 - 0 views

  •  
    "It is still a good idea to run Firefox and NoScript to help protect yourself from all kinds of Javascript attacks." Not more of this?!
Fabien Cadet

XRAY :: for web developers - 0 views

  •  
    XRAY is a bookmarklet for Internet Explorer 6+, and Webkit and Mozilla based browsers (including Safari, Firefox, Camino or Mozilla). Use it to see the box model for any element on any web page.
Joel Bennett

atomojo - Google Code - 0 views

  •  
    Includes the Atomojo Firefox Extension -- a plugin that contains an XPCOM component for interacting with the Atom Publishing Protocol (APP).
Fabien Cadet

vimperator : Firefox addon for vim-like browsing - 3 views

  •  
    « Writing efficient user interfaces is the main maxim, here at Vimperator labs. We often follow the Vim way of doing things, but extend its principles when necessary. Towards this end, we've created the liberator library for Mozilla based applications, to encapsulate as many of these generic principles as possible, and liberate developers from the tedium of reinventing the wheel. »
Daniel Gregoire

Selenium web application testing system - 4 views

  •  
    "automate web app testing across many platforms. " Fascinating new open source tool
  •  
    Test suite for web testing, multiple programming language interface, Firefox add-on with macro recording
1 - 20 of 32 Next ›
Showing 20 items per page