0

Do Chrome extensions work well on mobile phones?

I want to create an extension but unsure whether it will work on mobile devices.

If not, do I have to use a service like PhoneGap?

Xan
  • 74,770
  • 16
  • 179
  • 206
user2521436
  • 299
  • 1
  • 5
  • 15

1 Answers1

2

Google Chrome does not support extensions on mobile devices.

Chrome Apps, however, are another story. There is a toolchain, cca or Chrome Apps for Mobile, based on Apache Cordova that can compile an app into a native Android/iOS app.

Make sure you understand the differences between extensions and apps.

As a rule of thumb: Choose an app if you want to develop an (independent) application that can stand on its own. If you want to interact with the browser (e.g. modify a web page), build an extension.

Also take note of API limitations of cca-translated Apps.

Community
  • 1
  • 1
Xan
  • 74,770
  • 16
  • 179
  • 206