Inspect and view changes in OwlGuard – Bloqueur de liens de Phishing nuisible source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "OwlGuard",
"version": "1.0.3",
"description": "Découvrez OwlGuard, l'extension conçue pour Firefox qui protège votre navigation en ligne.",
"permissions": [
"tabs",
"notifications",
"webRequest",
"webRequestBlocking",
"storage",
"<all_urls>"
],
"web_accessible_resources": [
"liens.json"
],
"background": {
"scripts": [
"sources/background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "index.html",
"default_icon": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png",
"256": "icons/256.png"
}
},
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png",
"256": "icons/256.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"sources/script.js"
],
"css": [
"sources/style.css"
],
"run_at": "document_start"
}
],
"browser_specific_settings": {
"gecko": {
"id": "{a95db68c-03db-4e77-81c0-151cf57daffd}"
}
}
}