문제

My Chrome extension does not persist when chrome closes, although I did not specifically request it to stop, and the chrome settings are set to persist background tasks.

condition:

  1. chrome=>settings=>advance settings=>system: "Continue running background apps when Google Chrome is closed" IS CHECKED!

  2. My extension's manifest includes:

    "background": { "page": "background.html", "persistent": true },

Any ideas?

도움이 되었습니까?

해결책

Your manifest file should also contain the "background" permission:

{
    ...
    "permissions": [
        "background"
    ],
    ....
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top