Inspect and view changes in Briskine: Email templates for Gmail™ 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": "Briskine: Email templates for Gmail™",
"version": "7.14.5",
"description": "Write emails faster! Increase your productivity with templates and keyboard shortcuts on Gmail™, Outlook, or LinkedIn.",
"short_name": "Briskine",
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"background": {
"service_worker": "background/background.js"
},
"permissions": [
"tabs",
"contextMenus",
"storage",
"scripting",
"unlimitedStorage"
],
"host_permissions": [
"https://*/*",
"http://*/*"
],
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"content/content.js"
],
"css": [
"content/content.css"
],
"run_at": "document_end",
"all_frames": true,
"match_about_blank": true
}
],
"web_accessible_resources": [
{
"resources": [
"popup/popup.html",
"page/page.js",
"sandbox/sandbox.html",
"sandbox/sandbox.js",
"icons/icon-16.png",
"icons/icon-16-loggedout.png",
"icons/icon-32.png",
"icons/icon-32-loggedout.png",
"icons/icon-48.png",
"icons/icon-48-loggedout.png"
],
"matches": [
"https://*/*",
"http://*/*"
]
}
],
"sandbox": {
"pages": [
"sandbox/sandbox.html"
]
},
"action": {
"default_title": "Briskine",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png"
},
"default_popup": "popup/popup.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; frame-ancestors 'none'",
"sandbox": "sandbox allow-scripts; script-src 'self' 'unsafe-eval'; child-src 'self';"
}
}