Questions tagged [browser-addons]

A small program built into a browser that can perform special tasks, such as debugging.

A browser add-on can do almost anything. If you are in Chrome you can find add-ons from chrome.google.com/webstore/

131 questions
1
vote
4 answers

Get Current URL

I tried to make an add-ons to send the URL of a website that I'm open, function xxxx() { a = "mailto:xxx@xxxx.com?subject= xxxxxxxxxxxxxxxxxx" + document.title; a += "&body=" + escape("url" + window.location.href); window.location.href = a; } but…
No Fa
  • 11
  • 1
1
vote
0 answers

Block browser addons with JS?

I notice that LOTS of people (majority that use IE) have gazillions of adware browser addons and many of them replace text on my site with links to ads etc. This looks like I am advertising spammy stuff to the end user and I was wondering if there…
Gixxy22
  • 507
  • 1
  • 8
  • 20
1
vote
0 answers

3rd Party Add-On Blocking Site Content - How to Prevent?

Recently I had a friend tell me that the navigation on my site was not working. After looking into the issue on his computer I realized that it was the Yahoo Toolbar (A 3rd Party Firefox Addon) that was somehow blocking the menu. I could see the…
L84
  • 45,514
  • 58
  • 177
  • 257
1
vote
1 answer

web-browser addon and java applets?

I have an online service which uses a java applet to perform client side task but the user must left open the webpage hosting the applet to let it work, my question is - if I run this applet locally via an web-browser addon can the user close the…
Stacked
  • 841
  • 2
  • 12
  • 23
1
vote
3 answers

How doesFirefox and Chrome's quick update cycles affect the development of add-ons and extensions, if at all?

Would a developer simply be wise to check if their extension functions properly upon every release or is there a more efficient way? Thanks!
1
vote
0 answers

Addon for metro version of IE10

I need to create simple addon, that may read current site's page and modify it (like Chrome's javascript extensions). Also it would be great if it can add its menu item to browser's context menu, or add its icon to some place in browser (like in…
Paul Annekov
  • 3,193
  • 3
  • 19
  • 31
1
vote
1 answer

How to hook browser Print command like File->Print or File->Save

Is there a way to HOOk browser commands in IE/FF/Chrome Like Office applications? we can hook keyboard events, but how to hook menu items??
0
votes
1 answer

How does streak.com create an integrated gmail experience?

streak.com is able to create a very rich experience integrated with gmail. As far as I know, gmail doesn't allow plugins specifically. How do they accomplish this?
skabbes
  • 890
  • 7
  • 17
0
votes
1 answer

Communication between browser addon and C# application

Can anyone help me about my project?I'm trying to create an application using c# that will capture the Active URL of a browser and then scan it to a database for comparison. My 1st approach is to create a javascript addon that will get/capture the…
0
votes
0 answers

How to call picture-in-picure when clicking the extension icon in Firefox?

I'm trying to make a simple extension that does what "Ctrl+Shift+]" does on any page when you click it. So far I have manifest: { "manifest_version": 2, "name": "Picture-in-Picture Button", "version": "1.0", "description": "Opens the video…
DD3R
  • 115
  • 1
  • 8
0
votes
1 answer

Building Android Webkit Plugins?

I have an application I built (based on OilCan) that modifies some popular webpages with basic enhancements. When I distribute it as a .apk, I can launch my new application called MyApp that emulates the browser, editing the target pages to my…
linked
  • 1,258
  • 1
  • 14
  • 25
0
votes
0 answers

How to create a registry value name with the first available number

I want to install browser add-ons using local group policy. Here, for example, for Firefox the add-on Zotero Connector. For this I use the Powershell module PolicyFileEditor. Write-host "Trusting PS Gallery" Set-PSRepository -Name 'PSGallery'…
Lenz
  • 13
  • 3
0
votes
1 answer

With Javascript can you make browser to let you type bookmark name and it loads the page for you?

So, I am not a fan of using Mouse unless something cant be done with the keyboard through shortcuts. My internet explorer is made to search in Google when keywords are typed in the Address bar. Is there any setting I could in the browser that…
vinayvasyani
  • 1,393
  • 4
  • 13
  • 34
0
votes
1 answer

Google Chrome Web Store Extension - Internationalization Problem

I would like to internationalize my extension on the Google Chrome Web Store. More precisely: I would like to display a title, a description and a detailed description in the native language of each country I target. To do this, I followed the…
0
votes
1 answer

To publish a Microsoft Edge extension, is payment required for registration?

I have build an extension to publish on Microsoft Edge Add-ons and I wanted to know if the registration is free or paid to submit extensions. Can anyone help with information on this?
1 2 3
8 9