How to create Safari plugin

Step 0: Sign Up as a Safari Developer

The first thing to do is sign up as a Safari developer on apple.com.
This will allow you to make a Safari Developer Certificate which is needed in order to use Extension Builder.
Register over here and then go to the Safari Extension Certificate Utility and follow the instructions.


Once you have your certificate properly installed, it's time to get started!

Step 1: Meet Extension Builder

Extension Builder is the main tool used to create extensions.

If you've never developed for Safari before, you need to turn on the Develop menu.
To do this, go to the Advanced tab in Safari Preferences and check the box next to "Show Develop in the menu bar".
The menu should now appear; it contains many useful development tools, but for now, just select "Show Extension Builder."
Make sure you have the latest version of Safari installed.

Extension Builder is made up of a sidebar on the left that lists the extensions you currently have in development and a panel on the right that lets you inspect an extension, edit its properties and settings, install it, and more.


To create a new extension, click the '+' icon in the lower left corner and select "New Extension." Name the extension whatever you like and save it somewhere.
This will create a folder with a name extension ".safariextension".
Go ahead and open this folder.

The extension folder contains all the files and resources for the extension.
This is where we put the HTML, CSS, images and scripts that will make up our extension.
By default, the folder will contain a file called Info.plist, which is essentially where all the info set in.
Extension Builder is saved to, in XML form.
There is no reason to change this file manually.

Step 2: Set Up the Extension Settings

Many settings are self-explanatory, such as Name, Author and Description.
There is no need to change anything for now, just scroll down to the "Extension Chrome" category.
These are the user interfaces of the extension that will actually be shown.
As mentioned before, you can add extension bars ("Bars"), context menu items and toolbar button.

Only a button is needed for our extension, so click "New Toolbar Item".
Toolbar Item 1 should appear with the following properties:

  • "Label" is the name of the button that will be shown if the toolbar overflows.
    "Palette Label" will be shown under the button in the "customize toolbar" dialog, and "Tool Tip" is the text that will appear after hovering on the button for a while. We will set the label to "Nettuts", and, by leaving the other two properties empty, they will take their values from the Label and be the same.

  • The "Image" property is the icon that will appear on the button itself. The image should just be an alpha channel, or a black image with a transparent background, in .png format. The size of the icon ideally should be 16x16 pixels, but can be as large as 18x18; images that are too large will be cropped to fit. We will use a small, 16x16 "plus" icon (icon.png) to indicate Nettuts+.

To apply the image you want to use, first put it in the extension folder, then select it from the dropdown menu in Extension Builder.

  • "Identifier" can be used to identify the button from a script; we will set it simply to "nettuts".
  • "Command" is the name of the command that will be sent when clicking the button. Set it to "open-nettuts". We will later use this to detect when the button is clicked.
  • "Include by Default" Indicates whether or not the button appears on the user's toolbar immediately after installing the extension. Since the button is our extensions only feature, keep the setting checked.

Step 3: Create the Global Page

To control our button, we need to have a script, and for that, we need to have an HTML file to load the script. That file is the global HTML page.

The global page is a place to put scripts, data and resources that require no user interface. It is simply a HTML page that is not displayed anywhere.
The global page is loaded once per Safari session, and that makes it good for controlling our toolbar button.

Using your preferred text editor, make a new empty HTML file and call it "global.html". Save this file to the extension folder. In Extension Builder, find the "Global Page File" setting and select the file you created from the dropdown menu.

Open the global page. First, make a script tag in the file. You can also use an external .js file, but since our page contains nothing else but the script, there is no need.

When our button is clicked, safari sends a "command" event, which is called "open- nettuts", as we set in Extension Builder. In order to respond to this event, we need to install a listener in our global HTML page, like this:

1 safari.application.addEventListener("command", performCommand, false);

The first parameter is "type" - the type of event the target should listen to.
In our case, it's a command. The second parameter is the function to call when the event occurs;
we will simply call it "performCommand". The last parameter is Boolean - "useCapture", but it is not important for our needs; set it to false.

Our global page is now listening to commands that Safari sends.
Now we need to implement the function "performCommand" to respond appropriately when our button is clicked:

// Function to perform when event is received
Function performCommand(event) {
// Make sure event comes from the button if(event.command == "open-nettuts") {
        // This is where we finally respond to the click
    }
}

Our function will receive any command event sent from Safari, so we need to make sure which one it is and respond accordingly.
The command property of the event object we receive should be the same as what we set in Extension Builder, so we check that it is indeed "open-nettuts".

Finally, when we know our button was clicked by the user, we want to perform two things: open a new tab, and set its URL to http://net.tutsplus.com.

var newTab = safari.application.activeBrowserWindow.openTab();
newTab.url = "http://net.tutsplus.com/";

The first line is rather self-explanatory: it finds the current active browser window and opens a new tab in it. This tab is returned and saved in a variable, which is used in the second line to change the URL to nettuts.

Your global page should look like this now:

<script>
    // Set up the Listener
    safari.application.addEventListener("command", performCommand, false);
// Function to perform when event is received
function performCommand(event) {
// Make sure event comes from the button
if (event.command == "open-nettuts") {
var newTab = safari.application.activeBrowserWindow.openTab();
    newTab.url = "http://net.tutsplus.com/";
    }
}
</script>

That's it! our global page now recognizes a click, opens a new tab and directs it to Nettuts.
Switch back to Extension Builder, and click "Install" in the top right corner.
A button should appear on the toolbar. Click it to make sure it works!

Step 4: Add the Extension Icon

As a final touch, you might want to add an icon to your extension.
To do that, all you need to do is add three .png images of an icon to the extension folder: Icon-32.png, Icon-48.png and Icon-64.png.
Each file needs to be the size that its name suggests, so Icon-32.png will be 32x32 pixels, and so forth.
img
As a bonus, the source files for this tutorial include a Photoshop template for creating your own extension icons!

Step 5: Build the Package

Our extension is now finished! To export it, click the "Build Package..." button in Extension Builder and save it somewhere.
The extension can be installed by opening the file or dragging it to Safari.
You can now send this file, publish it on the internet or try submitting to Apple's Safari extension gallery.
Viola! You are good to go.
Just enable your extension is Safari.

AUTHOR

READ NEXT

Boostlog is an online community for developers
who want to share ideas and grow each other.

Bitcoin Gambling

Delete an article

Deleted articles are gone forever. Are you sure?