Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

The JavaScript library for ExtensionPay.com — payments for your browser extensions, no server needed.

License

NotificationsYou must be signed in to change notification settings

Glench/ExtPay

Repository files navigation

The JavaScript library forExtensionPay.com, a service to easily add payments to browser extensions. So far ExtensionPay has earned extension creatorsover $300k and counting!

// Example code// your-extension/background.jsconstextpay=ExtPay('your-extension-id');extpay.startBackground();extpay.getUser().then(user=>{if(user.paid){// ...}else{extpay.openPaymentPage()}})

Below are directions for using this library in your browser extension. If you learn better by example, you can also view the code for asample extension. This library usesMozilla's webextension-polyfill library internally for compatability across browsers which means it should work on almost all modern browsers.

"It hasn't even been 1 year yet and I'm already going topass $4,000 in annual subscriptions on an extension that I never in a million years thought I would be able to make a penny from. Thanks so much for creating this tool! I would not have even tried to monetize if I had to use Stripe directly, and you made it so easy.It took less than an hour to set it up and test it. Definitely have plans to create more extensions now that I know howeasy it is to monetize them." - David, Neobuyer extension

  1. Install
  2. Configure yourmanifest.json
  3. AddExtPay tobackground.js (required!)
  4. Useextpay.getUser() to check a user's paid status
  5. Useextpay.openPaymentPage() to let the user pay
  6. Useextpay.onPaid.addListener() to run code when the user pays
  7. Useextpay.openPaymentPage() to let the user manage their subscription preferences
  8. Useextpay.openTrialPage() to let the user sign up for a free trial
  9. Useextpay.openLoginPage() to let the user log in if they've paid already

Note: ExtPay.js doesn't contain malware or track your users in any way. This library only communicates with ExtensionPay.com servers to manage users' paid status.

If you like this library, please star it! ⭐️ It helps us out :)

1. Install

Copy thedist/ExtPay.js file into your project, or, if you're using a bundler (like Webpack or Rollup):

npm install extpay --save

2. Configure yourmanifest.json

ExtPay needs the following configuration in yourmanifest.json (for both manifest v2 and v3):

{"permissions": ["storage"    ]}

ExtPay will not show a scary permission warning when users try to install your extension.

Note: For Firefox, you may have to include"https://extensionpay.com/*" in your extension manifest's "permission" for ExtPay to work properly.

If you have a"content_security_policy" in your manifest or get aRefused to connect to 'https://extensionpay.com...' error, you'll have to addconnect-src https://extensionpay.com to your extension's content security policy.See Mozilla's documentation for more details.

3. AddExtPay tobackground.js (required!)

You need to putExtPay in your background file, often named something likebackground.js. If you don't includeExtPay in your background file it won't work correctly. If you're using a bundler you canimport 'ExtPay' orrequire('ExtPay') right in yourbackground.js.

With either Manifest V3 or Manifest V2 you'll need tosign up and register an extension. When you register an extension you'll create an extension id that you'll use when initializingExtPay. We'll usesample-extension as the extension id in the following examples.

Manifest V3

{"background": {"service_worker":"background.js"    }}
// background.jsimportScripts('ExtPay.js')// or `import` / `require` if using a bundlervarextpay=ExtPay('sample-extension');// Careful! See note belowextpay.startBackground();

Note about service workers: In the example aboveextpay will become undefined when accessed in service worker callbacks. To useextpay in service worker callbacks, redeclare it like so:

chrome.storage.local.get('foo',function(){varextpay=ExtPay('sample-extension');// ...})

Make sure not to useextpay.startBackground() in callbacks — it should only be called once.

Manifest V2

If you're not using a bundler, addExtPay.js tomanifest.json:

{"background": {"scripts": ["ExtPay.js","background.js"]    }}
// background.jsconstextpay=ExtPay('sample-extension')extpay.startBackground();

4. Useextpay.getUser() to check a user's paid status

This method makes a network call to get the extension user's paid status and returns auser object.

extpay.getUser().then(user=>{if(user.paid){// ...}else{// ...}})

or useawait:

asyncfunctionfoo(){constuser=awaitextpay.getUser();if(user.paid){// ...}}

It is possible forextpay.getUser() to throw an error in case of a network failure. Please consider this possibility in your code e.g.extpay.getUser().then(/* ... */).catch(/* handle error */)

Theuser object returned fromextpay.getUser() has the following properties:

user object properties

propertydescription
user.paidtrue orfalse.user.paid is meant to be a simple way to tell if the user should have paid features activated. For subscription payments,paid is only true ifsubscriptionStatus isactive.
user.paidAtDate() object that the user first paid ornull.
user.emailThe user's email if there is one ornull.
user.installedAtDate() object the user installed the extension.
user.trialStartedAtnull orDate() object the user confirmed their free trial.
subscription only
user.subscriptionStatusOne ofactive,past_due, orcanceled.active means the user's subscription is paid-for.past_due means the user's most recent subscription payment has failed (expired card, insufficient funds, etc).canceled means that the user has canceled their subscription and the end of their last paid period has passed.You can read more about how subscriptions work here.
user.subscriptionCancelAtnull orDate() object that the user's subscription is set to cancel or did cancel at.

5. Useextpay.openPaymentPage() to let the user pay

Opens a browser popup where the user can pay to upgrade their status.

extpay.openPaymentPage()

The payment page looks like this:

popup screenshot

Note:extpay.openPaymentPage() can fail to open the popup if there is a network error. Please consider this possibility in your code.

It is best to open the payment page when the user has a clear idea of what they're paying for.

While testing, use your ExtensionPay email to test payments without entering credit card information. Reinstall the extension to reset back to an unpaid user.

Depending on how you configure your extension, users that have paid before can log in to activate their paid features on different browsers, profiles, or after uninstalling/reinstalling.

6. Useextpay.onPaid.addListener() to run code when the user pays

If you want to run some code when your user pays for the first time, useextpay.onPaid.addListener():

extpay.onPaid.addListener(user=>{console.log('user paid!')})

To use this feature, you will need to include the following content script configuration in yourmanifest.json:

{"content_scripts": [        {"matches": ["https://extensionpay.com/*"],"js": ["ExtPay.js"],"run_at":"document_start"        }    ]}

The content script is required to enableextpay.onPaid callbacks. It will add a permissions warning when installing your extension. If you're using a bundler, you can create a file called something likeExtPay_content_script.js that only containsimport 'ExtPay' orrequire('ExtPay') and use that in the"js" field above.

You can add as many callback functions as you want.

Note:onPaid callbacks will be called after a user pays as well as after a user "logs in" (e.g. activates their paid account on a different browser/profile/install). This may change in the future -- if you'd like this to work differently, please contact me with a detailed explanation of your use case :)

7. Useextpay.openPaymentPage() to let the user manage their subscription preferences

If your extension is configured for subscription payments, you can let the user manage their subscription from within the extension with the same function you used to let them pay:

extpay.openPaymentPage()

The subscription management page looks something like this:

Screenshot of example subscription management page.

Note: please read thedetailed docs on subscriptions here.

8. Useextpay.openTrialPage() to let the user sign up for a free trial

If you want to give your users a trial period of your extension, you can useextpay.openTrialPage(), which looks something like this:

Screenshot of trial page

The user will be sent an email with a link that they can use to start their free trial. Once the user clicks the link, you can use thetrialStartedAt property fromextpay.getUser() in your extension to check if the trial has expired.

For example, if you wanted a 7 day trial period, you could use a check like this:

constextpay=ExtPay('sample-extension');extpay.getUser().then(user=>{constnow=newDate();constsevenDays=1000*60*60*24*7// in millisecondsif(user.trialStartedAt&&(now-user.trialStartedAt)<sevenDays){// user's trial is active}else{// user's trial is not active}})

Note thatextpay.openTrialPage(displayText) takes an optional string argument that is displayed to the user on the trial page. For example,extpay.openTrialPage('7-day') would change the trial prompt fromEnter an email to start your free trial toEnter an email to start your *7-day* free trial. This is meant to give your users a better idea of what they're signing up for.

You can also useextpay.onTrialStarted.addListener() to run functions when the user's trial starts. LikeonPaid, you need to include the following in yourmanifest.json to make it work:

{"content_scripts": [        {"matches": ["https://extensionpay.com/*"],"js": ["ExtPay.js"],"run_at":"document_start"        }    ]}

9. Useextpay.openLoginPage() to let the user log in if they've paid already

A page will open that will allow the user to enter the email they paid with to receive a magic login link. This page can also be accessed through the normal payment screen.

Contributing

  1. npm install
  2. EditExtPay.dev.js
  3. npm run dev
  4. npm run dist before committing changes.

[8]ページ先頭

©2009-2025 Movatter.jp