Inspect and view changes in Satzgenau 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": 3,
"name": "Satzgenau",
"description": "Juristische Verweiserkennung im Browser",
"version": "1.0.1",
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"author": "Fabian Thomas",
"default_locale": "de",
"web_accessible_resources": [
{
"resources": [
"assets/overlay-ui.css",
"assets/tailwind.css",
"Inter-Variable.woff2",
"SourceSerif4-Italic-Variable.woff2",
"SourceSerif4-Variable.woff2",
"icons/128.png"
],
"matches": [
"https://*/*",
"http://*/*"
]
}
],
"permissions": [
"activeTab",
"storage"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Satzgenau / Einstellungen",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"all_frames": true,
"css": [
"content-scripts/content.css"
],
"js": [
"content-scripts/content.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}