Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_extName__",
"description": "__MSG_extDes__",
"default_locale": "en",
"icons": {
"128": "128.png"
},
"action": {
"default_icon": {
"128": "128.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*.reddit.com\/*"
],
"js": [
"js\/comment-app.js"
],
"run_at": "document_end"
},
{
"matches": [
"*:\/\/*.reddit.com\/*"
],
"js": [
"js\/translate-app.js"
],
"css": [
"translate.css"
],
"run_at": "document_end"
},
{
"matches": [
"<all_urls>"
],
"js": [
"js\/shortcut-app.js"
],
"run_at": "document_end"
}
],
"host_permissions": [
"<all_urls>",
"*:\/\/*.reddit.com\/*"
],
"background": {
"service_worker": "js\/background.js"
},
"permissions": [
"storage",
"sidePanel",
"tabs",
"activeTab"
],
"side_panel": {
"default_path": "sidePanel.html"
},
"web_accessible_resources": [
{
"resources": [
"css\/comment-app.css"
],
"matches": [
"*:\/\/*.reddit.com\/*"
]
},
{
"resources": [
"css\/shortcut-app.css"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"fonts\/*"
],
"matches": [
"*:\/\/*.reddit.com\/*"
]
},
{
"resources": [
"img\/*.png"
],
"matches": [
"<all_urls>"
]
}
],
"options_page": "options.html",
"version": "1.4.0"
}