위치 정보 사용 권한으로 작동하지 않는 매니페스트 버전 3 크롬 확장 프로그램

0

질문

고 싶을 개발하는 크롬 확장하는 것과 호환되는 매니페스트 버전 3 지만,실행으로 문제가 현재 사용자의 위치 정보 좌표와 함께 작동하는 매니페스트 버전 2 지만,매니페스트 버전 3 가 발생하는 navigator.geolocation 가 정의되지 않습니다.

여기에 내가 나타납니다.json 고 background.js 파:

manifest.json:

    "name": "Chrome Extension MV3",
    "description": "Learning all about Chrome Extensions Manifest Version 3!",
    "version": "0.1.0",
    "manifest_version": 2,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": ["geolocation"]
}

background.js:

navigator.geolocation.getCurrentPosition((position) => {
    const { latitude, longitude } = position.coords;
    console.log(latitude, longitude);
});
1

최고의 응답

0

정확한 같은 일이 일어나고 있다.

에서 잘 작동합 chrome f12 콘솔에서 확장자가 동일한 오류가 있습니다.

var getlocale = function() {
  var geoSuccess = function(position) {
    latitude = position.coords.latitude;
    longitude = position.coords.longitude;
    console.log(latitude);
    console.log(longitude);
  };
  navigator.geolocation.getCurrentPosition(geoSuccess);
};
2021-11-27 03:20:07

다른 언어로

이 페이지는 다른 언어로되어 있습니다

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................