We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When user click on our extension in the list of extensions some action should happen.
Could possibly switch to the calendar tab, or open a new page by adding code like this to the Background/index.ts file:
Background/index.ts
chrome.action.onClicked.addListener(function () { chrome.tabs.create({ url: './src/public/background.html' }); });
The text was updated successfully, but these errors were encountered:
FYI, before action event can be intercept, we need to register the action in the manifest: https://developer.chrome.com/docs/extensions/reference/action/
Sorry, something went wrong.
No branches or pull requests
When user click on our extension in the list of extensions some action should happen.
Could possibly switch to the calendar tab, or open a new page by adding code like this to the
Background/index.ts
file:The text was updated successfully, but these errors were encountered: