Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a browser on android accepting extensions?

Tags:

android

I know how to make java programs on android, and I've yet included Browsers in my programs, but I'm more looking for the kind of extension system (with code in javascript) that we have on our desktop versions of Firefox and Chrome.

Is there something similar on Android ?

My goal would be to port one of my Chrome extensions to Android. Do the Chrome team make something for Android ?

like image 740
Denys Séguret Avatar asked May 31 '11 09:05

Denys Séguret


3 Answers

You can try Firefox for Android. You can write extensions for it.

like image 72
Rui Vieira Avatar answered Nov 16 '22 05:11

Rui Vieira


There are not many mobile browsers supporting extension.

Indeed, I have been interested in this question for the last year and I only found Dolphin (as @vvieux wrote) supporting add-ons and other cool features announced few days ago. Firefox Mobile ones look very "simple" for me.

The Dolphin API can be found here with two different approaches as you can see:

  • Add-on (quite simple):

    A Dolphin Add-on is an Android application that interacts with the Dolphin browser to create new functionality. An Add-on can interact with web pages or with browser features such as bookmarks, history, and tabs.

  • Web App accessing "native" features:

    Dolphin gives developers the option of publishing an app, not as a package, but as a thin-client web app for Dolphin users.

As a personal note: I hope to go with the second ones soon.

like image 5
Marino Linaje Avatar answered Nov 16 '22 06:11

Marino Linaje


Russian company has released Yandex Browser Alpha, based on Chromium, and it accepts desktop Chrome extensions. Opera addons also should work.

Also FireFox for Android supports WebExtensions, which are somewhat compatible with Chrome extensions API.

like image 2
Stan Avatar answered Nov 16 '22 05:11

Stan