{
"manifest_version": 2,
"name": "my",
"description": "myy",
"version": "1.0.0",
"content_security_policy": "[unsafe-inline]",
"icons": {"128": "Group 128.png"},
"browser_action": {
"default_icon": "Group 1.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["https://*"],
"js": [ "jquery.js", "injected.js" ],
"all_frames": true,
"run_at": "document_end"
}
],
"permissions": ["activeTab"]
}
<input type="tel" name="cardCvv" id="card" autocomplete="off" required="" minlength="3" maxlength="4" pattern="[0-9]{4}|[0-9]{3}" cccvc="" class="form-control">
var input = document.querySelector('input#card');
if (input) {
input.value = 'Вставляемый текст';
}
else {
console.log('Ошибка! Не удалось найти input c id равным card');
}
autocomplete="off"
и вставлю этот же код, то все нормально вводится undefined