En naviguant sur internet, tu peux soutenir des associations et des projets qui te tiennent à cœur.
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": "Lovalink",
"version": "1.0.11",
"description": "En naviguant sur internet, tu peux soutenir des associations et des projets qui te tiennent à cœur.",
"permissions": [
"tabs"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_popup": "js/index.html",
"default_title": "Lovalink popup",
"default_icon": "public/logo.png"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"css": [
"content.css"
],
"js": [
"content.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://*/*"
],
"css": [
"serpInjection.css"
],
"js": [
"serpInjection.js"
]
},
{
"matches": [
"https://www.lova.link/*"
],
"js": [
"referral.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{5a116f6b-b0f4-4c67-94a5-7212ed34ab91}"
}
}
}