Coğrafi konum izni, Bildirim Sürüm 3 Chrome Uzantısıyla çalışmaz

0

Soru

Manifest Sürüm 3 ile uyumlu olacak bir Chrome Uzantısı geliştirmek istiyorum, ancak Manifest Sürüm 2 ile çalışan mevcut kullanıcının coğrafi konum koordinatlarını almakla ilgili bir sorunla karşılaşıyorum, ancak Manifest Sürüm 3 için bunu atıyor navigator.geolocation tanımsız.

İşte manifestom.json ve arka plan.js dosyaları:

manifesto.jsonname:

    "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"]
}

arka plân.js:

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

En iyi cevabı

0

Aynı şey bana da oluyor.

Chrome f12 konsolunda iyi çalışıyor, ancak uzantıda değil, aynı hatayı alıyorum.

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

Diğer dillerde

Bu sayfa diğer dillerde

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