mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-26 13:19:49 +07:00
14 lines
282 B
JavaScript
14 lines
282 B
JavaScript
chrome.runtime.onInstalled.addListener(({ reason }) => {
|
|
if (reason === chrome.runtime.OnInstalledReason.INSTALL) {
|
|
showReadme();
|
|
}
|
|
});
|
|
|
|
chrome.action.onClicked.addListener(() => {
|
|
showReadme();
|
|
});
|
|
|
|
function showReadme() {
|
|
chrome.tabs.create({ url: '/index.html' });
|
|
}
|