Tagged Questions

Using web technologies (HTML5/CSS3/Javascript) you can create plugins that alter web content or the browser itself. Apple maintains an online gallery for distribution of extensions. Apple's Safari Extensions Development Guide provides a helpful starting point.

learn more… | top users | synonyms

8
votes
1answer
1k views

How can I build a Safari extension package from the command line?

Instead of going to Extension Builder > Build Package…, I'd like to built a .safariextz package from the MyExtension.safariextension folder. I know I can unpack an extension with xar -xf. I suspect ...
4
votes
4answers
3k views

Safari Extension Questions

I'm in the process of building my first Safari extension--a very simple one--but I've run into a couple of problems. The extension boils down to a single, injected script that attempts to bypass the ...
2
votes
1answer
266 views

How can I load a NPAPI Plugin from a Safari extension?

My query is similar to this global.html is unable to load NPAPI plugin from safari-extension builder but its loading from the direct link. How can I load a NPAPI Plugin from a Safari extension?
1
vote
4answers
116 views

How to store objects in a array using javascript

i am developing extesnions for safari browswer. i want to store current active tab objects in a array as key. how to store multiple tab objects in a array. i wrote following code. **First scenario: ...
1
vote
1answer
392 views

How to detect in Safari if an Application is Installed

I'm attempting to write a simple plugin in safari that only needs to check if an application I have developed is installed via javascript. The application launches using a custom uri. My issue is ...
0
votes
4answers
1k views

safari extension beforeload event documentation

I can't find any documentation on the "beforeload" event other than the Blocking Unwanted Content section of this. What I'm specifically looking for is the event message structure. From the above ...
-1
votes
2answers
105 views

How to store object as key in a array using javascript [closed]

Possible Duplicate: How to store objects in a array using javascript i want to store object as key in a array what is the solution. var myTabObj = ...
1
vote
6answers
915 views

Safari 5 Extension: How can I detect when a window's current tab has changed?

I have a Safari 5 extension that contains a toolbar. Whenever the current tab changes, that toolbar should be updated. I would like to do something like this from my bar's script: ...
3
votes
2answers
149 views

Executing host script from an injected page

I'm writing a Safari Extension that adds some functionality to a web page that I don't own. I would like for my injected JavaScript page to be able to fire some JavaScript functions the host page ...
3
votes
0answers
419 views

How can a Safari extension know if Private Browsing mode is on?

I'm writing a Safari extension and want it to behave differently when the user turns on Private Browsing mode (I want to respect this private mode). I found no mention of this in Apple's docs. I'm ...
1
vote
0answers
44 views

How does one write unit tests for Safari extensions?

I'm currently at work on a Safari 5 extension that would seriously benefit from some automated unit testing. Trouble is, I don't really know where to start. The official framework seems to feature no ...
1
vote
3answers
463 views

jQuery access table inside a frame

I've got a problem. I want to select an element inside a frame (not iframe). The name of the frame is main, but I can't add an ID (complicated to explain, but not possible). How can I manipulate the ...
0
votes
1answer
80 views

Set New tab/window URL in Safari Extension

I am creating a safari extension. how do I manually set the new tab/window to a URL of my choosing? I used some of logic from this post to make sure I am only taking over user created tabs/windows ...
0
votes
1answer
92 views

Safari extension: Event for a completely new tab?

I'm looking to redirect new tabs in Safari to a certain URL, in essence changing the default new tab page. However, I do not want to redirect new tabs that are opened by following links. The Windows ...
3
votes
2answers
1k views

-webkit-transform CSS Properties Hose Font Rendering

This question is pretty much the same as this one except that I'm seeing it exclusively in Safari on Mac (the only platform I need to care about). It's definitely CSS-related and I think I've narrowed ...
2
votes
1answer
402 views

global.html is unable to load NPAPI plugin from safari-extension builder but its loading from the direct link

I am developing a Safari extension for both Mac and Win. My extension is a trigger point for my plugin which i am storing at ** /Library/Internet Plug-ins/** My extension's global.html is calling for ...
2
votes
1answer
188 views

Wait for message to send in window.onbeforeunload?

I'm messing around with Safari extensions, and I'd like my extension to respond to the user opening or closing tabs. I have the extension injecting a script that runs when the new tab opens and ...
2
votes
1answer
437 views

Safari Extentions: Event for tab change? [closed]

Possible Duplicate: Safari 5 Extension: How can I detect when a window's current tab has changed? I'm trying to have a popup over a page in Safari which is tab-specific, and triggered ...
1
vote
3answers
61 views

Javascript code to detect if focus is in a text field

I'm trying to make a safari extension that does something if the cursor focus isn't in a text field. However the following code to detect if the focus isn't in a text field does not work. if ...
1
vote
1answer
218 views

Difference between JavaScript Extensions and NPAPI plugins with respect to performance

I have written a windowless NPAPI plugin which binds to a shared library for accessing my native resources. The plugin is loaded by a web Application running in Firefox browser. Recently, I have seen ...
1
vote
1answer
352 views

How to reload a Safari Extension from the command line?

I need to "Reload" a Safari extension from the command line (and also build the package later). How can this be done? Why? I'd like to build in one step - my code is in CoffeeScript and thus I'm ...
1
vote
1answer
391 views

Can XMLHttpRequest data be stored in localStorage?

I am writing a Safari extension that makes an XMLHttpRequest for some XML data using jQuery.ajax. If I do console.log(data) in the process data function, I get an item Document which I can traverse. ...
0
votes
2answers
173 views

Safari Extension - Changing Predefined Javascript Variables Values

So what i am trying to achieve is to manipulate a javascript variable from a website, so that when I load the page it changes to a value I have pre determined (inmyscript.js). In Safari's extension ...
0
votes
0answers
239 views

Script for build Safari Extension or (xar-archive) in Windows

For automatic build add-ons for FireFox, Chrome. I use Windows PowerShell script: building a ZIP archive, rename and place in the system folder. How to do this for Safari? How to build a xar-file? Or ...
0
votes
2answers
402 views

HTML PHP JavaScript Whatever to Check Gmail Unread Count

How do all these browser plugins, notifiers, etc. check your gmail unread count? I'm trying to write a Safari Extension (which happens to be in javascript but I don't think it matters) and I can't ...
0
votes
1answer
471 views

Safari Extension - How to respond to Settings changes?

I'm currently working on an Extension for Safari 5 and I want to run a listener function whenever Settings changes are made. Apple provides an example for that, but it doesn't work for me. I currently ...