Inspect and view changes in Privacy Policy Checker 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": "Privacy Policy Checker",
"description": "Protect your privacy! PrivacyChecker automatically summarizes website's privacy ",
"version": "1.0.1",
"icons": {
"48": "assets/48.png",
"96": "assets/96.png"
},
"permissions": [
"tabs"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "Your Privacy Matters."
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"host_permissions": [
"https://chat.tipsai.cn/api/chat"
],
"web_accessible_resources": [
{
"resources": [
"/*"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"jquery-3.6.0.min.js",
"content.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}