Detect operating system from Google Chrome Extension

后端 未结 2 1432
别跟我提以往
别跟我提以往 2021-01-11 11:25

I am developing a Chrome extension, and I need to detect which operating system Chrome is running on but i can\'t seem to find any info on how to do it. Please Help. Thank

2条回答
  •  盖世英雄少女心
    2021-01-11 11:43

    Recently added, you can use the getPlatformInfo method in Chrome's own API:

    chrome.runtime.getPlatformInfo(function(info) {
        // Display host OS in the console
        console.log(info.os);
    });
    

提交回复
热议问题