選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

background.js 344B

12345678910
  1. chrome.runtime.onInstalled.addListener(() => {
  2. chrome.declarativeContent.onPageChanged.removeRules(undefined, () => {
  3. chrome.declarativeContent.onPageChanged.addRules([{
  4. conditions: [ new chrome.declarativeContent.PageStateMatcher({
  5. pageUrl: { },
  6. })
  7. ], actions: [ new chrome.declarativeContent.ShowPageAction() ]
  8. }]);
  9. });
  10. });