cdxf
cdxf

Reputation: 5648

How to hide my chrome extension source code

Recently, i have made a chrome ext, but anyone can read its source code by rename the crx to zip and extract it, how i secure my SC ?

Upvotes: 3

Views: 7429

Answers (2)

Shantanu Sharma
Shantanu Sharma

Reputation: 692

You can use Google Firebase API and related other storage services for write secure/safe business logic, because your google extension code is always open to show for every one....

:::: Example for your more help ::::

key-value from extension JS code ----- Transfer to Server ----> Firebase API perform your logics ---- send back to ----> extension JS code

FireBase is Free and light weight and perfect for business logic

Upvotes: 2

Ben Voigt
Ben Voigt

Reputation: 283634

The only way to prevent anyone with your extension from seeing the logic is to move it out of the extension that runs on a user computer and into a web service that the extension accesses.

Since this will slow down the works quite a bit, you should only do this for the really valuable parts of your code.

Upvotes: 8

Related Questions