{
"manifest_version": 3,
"name": "WebAuthn API override",
"version": "1.0",
"description": "sample",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"world": "MAIN",
"run_at": "document_start"
}
]
}
(function() {
navigator.credentials.create = function(options) {
return Promise.reject('navigator.credentials.create not implemented');
};
navigator.credentials.get = function(options) {
return Promise.reject('navigator.credentials.get not implemented');
};
})();