Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"short_name": "__MSG_shortName__",
"version": "1.0.0",
"description": "__MSG_appDescription__",
"homepage_url": "https:\/\/troywell.org",
"default_locale": "en",
"author": "Troywell",
"manifest_version": 3,
"permissions": [
"storage",
"unlimitedStorage",
"management",
"scripting",
"activeTab",
"tabs",
"cookies",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess",
"declarativeNetRequestFeedback",
"alarms",
"webNavigation",
"notifications"
],
"background": {
"service_worker": "bg\/bundle.js"
},
"content_scripts": [
{
"all_frames": false,
"js": [
"content\/bundle.js"
],
"css": [
"fonts.css"
],
"matches": [
"<all_urls>"
],
"run_at": "document_end"
}
],
"action": {
"default_icon": "icon\/icon-32.png",
"default_title": "__MSG_appName__",
"default_popup": "popup.html"
},
"icons": {
"32": "icon\/icon-32.png",
"64": "icon\/icon-64.png",
"128": "icon\/icon-128.png"
},
"host_permissions": [
"*:\/\/*\/*"
],
"web_accessible_resources": [
{
"resources": [
"content\/*.css",
"content\/*.svg",
"icon\/*",
"images\/*"
],
"matches": [
"*:\/\/*\/*"
]
}
]
}