Inspect and view changes in Sources de Confiance 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
{
"name": "Sources de Confiance",
"description": "Complèter Google, Bing et Qwant avec des ressources utiles aux acteurs publics.",
"version": "2.3",
"manifest_version": 2,
"icons": {
"24": "assets/icons/sdc-24.png",
"48": "assets/icons/sdc-48.png",
"128": "assets/icons/sdc-128.png"
},
"browser_action": {
"default_title": "Sources de Confiance",
"default_popup": "./popup/popup.html"
},
"options_ui": {
"page": "./options/options.html",
"browser_style": true,
"chrome_style": true
},
"background": {
"scripts": [
"browser-polyfill.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https://*.google.com/search*",
"https://*.google.fr/search*",
"https://*.qwant.com/*",
"https://*.bing.com/search*"
],
"js": [
"browser-polyfill.js",
"./main.js"
],
"css": [
"./main.css"
]
},
{
"matches": [
"https://publica.unsearch.net/*"
],
"js": [
"./xboard/index.js"
]
},
{
"matches": [
"https://accounts.unsearch.net/*"
],
"js": [
"./accounts/index.js"
]
}
],
"permissions": [
"activeTab",
"tabs",
"storage",
"search",
"<all_urls>"
],
"web_accessible_resources": [
"assets/icons/*",
"assets/logos/*",
"**.css"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}