Inspect and view changes in Phrazify 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Phrazify",
"version": "1.0.19",
"description": "Phrazify: Igniting creativity, enhancing writing with personalized AI assistance.",
"background": {
"service_worker": "js/background.js",
"type": "module"
},
"action": {
"default_popup": "popup.html"
},
"permissions": [
"cookies",
"contextMenus",
"storage",
"scripting",
"activeTab"
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"images/brand-logo.png",
"images/modal-icons/copy.svg",
"images/modal-icons/arrow-down.svg",
"images/modal-icons/arrow-up.svg",
"images/modal-icons/regenerate.svg",
"images/modal-icons/tick.svg",
"images/modal-icons/cross.svg"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": "images/logo.png",
"48": "images/logo.png",
"128": "images/logo.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"commands": {
"toggle-modal": {
"suggested_key": {
"default": "Ctrl+I",
"mac": "Command+I"
},
"description": "Send a 'toggle-modal' event to the extension"
}
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self';"
}
}