mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-26 13:19:49 +07:00
Fixes a linter error in the `identity` API sample, and updates the linter to run on all PRs going forward.
7 lines
117 B
JavaScript
Executable File
7 lines
117 B
JavaScript
Executable File
chrome.action.onClicked.addListener(() => {
|
|
chrome.tabs.create({
|
|
active: true,
|
|
url: 'index.html'
|
|
});
|
|
});
|