61
Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

Embed Size (px)

Citation preview

Page 1: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

Mark Phillipmarkphillip.com

The Right ToolsFor The Right JobBuilding Add-ons for Firefox and Fennec

Page 2: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec
Page 3: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

I've never created a Firefox add-on

because...

Page 4: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

”“I've never created

a Firefox add-on because I've been able to do most things I want to do using Greasemonkey / User Scripts.

Page 5: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

”“I've never created

a Firefox add-on because I've never needed to.

Page 6: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

”“Never created a ff

addon because the iPhone API is way too distracting.

Page 7: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

Stats

Page 8: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

1.5M Downloads/Day

Page 9: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

1.5M Downloads/Day192M In Use

Page 10: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

1.5M Downloads/Day192M In Use

1/3 of users have 1+

Page 11: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

1.5M Downloads/Day192M In Use

1/3 of users have 1+1.6B Downloads

Page 12: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

Just how big is1,656,860,490?

Page 13: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec
Page 14: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

Firefox Culture?

Page 15: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

AdBlock Plus

FirebugFlagfox

Download Statusbar

SkipScreen

Page 16: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec
Page 17: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

”“I've never created

a Firefox add-on because I'm not a programmer.

Page 18: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

XULXML User Interface Language

Page 19: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

install.rdfchrome.manifest

main.xul

Page 20: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

<?xml version="1.0"?>

<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"xmlns:em="http://www.mozilla.org/2004/em-rdf#">

<Description about="urn:mozilla:install-manifest"> <em:id>[email protected]</em:id> <em:version>1.0</em:version> <em:type>2</em:type> <em:name>Goodbye Cruel World</em:name> <em:description>Hello World is just too happy</em:description> <!-- Firefox --> <em:targetApplication> <Description> <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> <em:minVersion>1.5</em:minVersion> <em:maxVersion>3.5.*</em:maxVersion> </Description> </em:targetApplication> </Description></RDF>

install.rdf

Page 21: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

<?xml version="1.0"?>

<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"xmlns:em="http://www.mozilla.org/2004/em-rdf#">

<Description about="urn:mozilla:install-manifest"> <em:id>[email protected]</em:id> <em:version>1.0</em:version> <em:type>2</em:type> <em:name>Goodbye Cruel World</em:name> <em:description>Hello World is just too happy</em:description> <!-- Firefox --> <em:targetApplication> <Description> <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> <em:minVersion>1.5</em:minVersion> <em:maxVersion>3.5.*</em:maxVersion> </Description> </em:targetApplication> </Description></RDF>

install.rdf

Page 22: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

<?xml version="1.0"?>

<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"xmlns:em="http://www.mozilla.org/2004/em-rdf#">

<Description about="urn:mozilla:install-manifest"> <em:id>[email protected]</em:id> <em:version>1.0</em:version> <em:type>2</em:type> <em:name>Goodbye Cruel World</em:name> <em:description>Hello World is just too happy</em:description> <!-- Firefox --> <em:targetApplication> <Description> <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> <em:minVersion>1.5</em:minVersion> <em:maxVersion>3.5.*</em:maxVersion> </Description> </em:targetApplication> </Description></RDF>

install.rdf

Page 23: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

<?xml version="1.0"?>

<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"xmlns:em="http://www.mozilla.org/2004/em-rdf#">

<Description about="urn:mozilla:install-manifest"> <em:id>[email protected]</em:id> <em:version>1.0</em:version> <em:type>2</em:type> <em:name>Goodbye Cruel World</em:name> <em:description>Hello World is just too happy</em:description> <!-- Firefox --> <em:targetApplication> <Description> <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> <em:minVersion>1.5</em:minVersion> <em:maxVersion>3.5.*</em:maxVersion> </Description> </em:targetApplication> </Description></RDF>

install.rdf

Page 24: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

<?xml version="1.0"?>

<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"xmlns:em="http://www.mozilla.org/2004/em-rdf#">

<Description about="urn:mozilla:install-manifest"> <em:id>[email protected]</em:id> <em:version>1.0</em:version> <em:type>2</em:type> <em:name>Goodbye Cruel World</em:name> <em:description>Hello World is just too happy</em:description> <!-- Firefox --> <em:targetApplication> <Description> <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> <em:minVersion>1.5</em:minVersion> <em:maxVersion>3.5.*</em:maxVersion> </Description> </em:targetApplication> </Description></RDF>

install.rdf

Page 25: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

<?xml version="1.0"?>

<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"xmlns:em="http://www.mozilla.org/2004/em-rdf#">

<Description about="urn:mozilla:install-manifest"> <em:id>[email protected]</em:id> <em:version>1.0</em:version> <em:type>2</em:type> <em:name>Goodbye Cruel World</em:name> <em:description>Hello World is just too happy</em:description> <!-- Thunderbird --> <em:targetApplication> <Description> <em:id>{a463f10c-3994-11da-9945-000d60ca027b}</em:id> <em:minVersion>0.4</em:minVersion> <em:maxVersion>2.5</em:maxVersion> </Description> </em:targetApplication> </Description></RDF>

install.rdf

Page 26: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

<?xml version="1.0"?>

<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"xmlns:em="http://www.mozilla.org/2004/em-rdf#">

<Description about="urn:mozilla:install-manifest"> <em:id>[email protected]</em:id> <em:version>1.0</em:version> <em:type>2</em:type> <em:name>Goodbye Cruel World</em:name> <em:description>Hello World is just too happy</em:description> <!-- Fennec --> <em:targetApplication> <Description> <em:id>{a23983c0-fd0e-11dc-95ff-0800200c9a66}</em:id> <em:minVersion>0.1</em:minVersion> <em:maxVersion>1.0.*</em:maxVersion> </Description> </em:targetApplication> </Description></RDF>

install.rdf

Page 27: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

contentrefreshchrome/content/application={ec8030f7-c20a-464f-9b0e-13a3a9e97384}

overlaychrome://browser/content/browser.xul

chrome://refresh/content/main.xulapplication={ec8030f7-c20a-464f-9b0e-13a3a9e97384}

chrome.manifest

Page 28: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

contentrefreshchrome/content/application={ec8030f7-c20a-464f-9b0e-13a3a9e97384}

overlaychrome://browser/content/browser.xul

chrome://refresh/content/main.xulapplication={ec8030f7-c20a-464f-9b0e-13a3a9e97384}

chrome.manifest

Page 29: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

contentrefreshchrome/content/application={ec8030f7-c20a-464f-9b0e-13a3a9e97384}

overlaychrome://browser/content/browser.xul

chrome://refresh/content/main.xulapplication={ec8030f7-c20a-464f-9b0e-13a3a9e97384}

chrome.manifest

Page 30: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec
Page 31: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

There is no Dana,Only Zuul

Page 32: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec
Page 33: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec
Page 34: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec
Page 35: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

<?xml version="1.0"?>

<overlay id="refresh" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

<toolbox id="navigator-toolbox"><label>I'm so emo.</label>

</toolbox>

</overlay>

main.xul

Page 36: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

<?xml version="1.0"?>

<overlay id="refresh" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

<toolbox id="navigator-toolbox"><label>I'm so emo.</label>

</toolbox>

</overlay>

main.xul

Page 37: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

<?xml version="1.0"?>

<overlay id="refresh" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

<toolbox id="status-bar"><toolbar id="ruwt-toolbar“>

<vbox><label>I'm so emo.</label><label onmouseover="alert('I love

Paramore.')" style="color:red;font-weight:bold">My fingernails are black.</label>

</vbox></toolbar>

</toolbox>

</overlay>

main.xul

Page 38: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

<?xml version="1.0"?><?xml-stylesheet href="chrome://refresh/content/css/main.css"

type="text/css"?>

<overlay id="refresh" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

<toolbox id="status-bar"><toolbar id="ruwt-toolbar“>

<vbox><label>I'm so emo.</label><label onmouseover="alert('I love

Paramore.')" style="color:red;font-weight:bold">My fingernails are black.</label>

</vbox></toolbar>

</toolbox>

</overlay>

main.xul

Page 39: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

<?xml version="1.0"?><?xml-stylesheet href="chrome://refresh/content/css/main.css"

type="text/css"?>

<overlay id="refresh" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

<script type="text/javascript" src="chrome://refresh/content/js/main.js"/>

<toolbox id="status-bar"><toolbar id="ruwt-toolbar“>

<vbox><label>I'm so emo.</label><label onmouseover="alert('I love

Paramore.')" style="color:red;font-weight:bold">My fingernails are black.</label>

</vbox></toolbar>

</toolbox>

</overlay>

main.xul

Page 40: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec
Page 41: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

Packaging

Page 42: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

<target name="widgets.mozilla.build" depends="init, clean" description="Builds Mozilla Toolbar .xpi install file">

<mkdir dir="${out.mozilla}"/><mkdir dir="${dist}"/>

<copy todir="${out.mozilla}"><fileset dir="${widgets.mozilla}"/>

</copy>

<zip destfile="${dist}/ruwt.xpi" basedir="${out.mozilla}"/></target>

ANT Build

Page 43: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

set x=extension_namexcopy %x% build /i /e xcopy build\content build\chrome\content /i /ermdir /s /q build\content cd build\chrome7z a -tzip "%x%.jar" * -r -mx=0cd ..\.. rmdir /s /q build\chrome\contentrmdir /s /q build\chrome\localermdir /s /q build\chrome\skin replace chrome.manifest build cd build7z a -tzip "%x%.xpi" * -r -mx=9cd .. move build\%x%.xpi %x%.xpi rmdir /s /q build  Windows Build

Page 44: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec
Page 45: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

Deployment

Page 46: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec
Page 47: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

Distribution

Page 48: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec
Page 49: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

Statistics

Page 50: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec
Page 51: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

Fennec

Page 52: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec
Page 53: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

A Moment for JavaScript

Page 54: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec
Page 55: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

Add-ons Tutorialhttps://developer.mozilla.org/en/Building_an_Extension

Page 56: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

XUL Referencehttps://developer.mozilla.org/En/XUL

Page 57: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

XUL IDEshttps://wiki.mozilla.org/XUL:IDE

Page 58: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

Firefox Add-onshttps://addons.mozilla.org/en-US/firefox/

Page 59: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

Fennec Add-onshttps://addons.mozilla.org/en-US/mobile/

Page 60: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

This Talkhttp://markphillip.com/talks

Page 61: Mark Phillip markphillip.com The Right Tools For The Right Job Building Add-ons for Firefox and Fennec

Mark Phillipmarkphillip.com

Thanks!