{
"manifest_version": 2,
"name": "Alarm test",
"description": "This extension alarms.",
"version": "1.5",
"permissions": [
"activeTab",
"alarms",
"storage",
"unlimitedStorage"
],
"background": {
"scripts": [
"js/background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://*/*"
],
"js": [
"scripts.js"
],
"run_at": "document_idle"
}
]
}