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": "Reddit Publish Date",
"version": "1.3.1",
"description": "This extension adds the original publication date to articles posted on Reddit. Supports all versions of Reddit.",
"permissions": [
"background",
"storage"
],
"host_permissions": [
"https:\/\/*\/",
"http:\/\/*\/"
],
"icons": {
"16": "icons\/icon-16.png",
"19": "icons\/icon-19.png",
"32": "icons\/icon-32.png",
"38": "icons\/icon-38.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"manifest_version": 3,
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.reddit.com\/*"
],
"exclude_matches": [
"https:\/\/*.reddit.com\/r\/*\/submit",
"https:\/\/*.reddit.com\/r\/*\/wiki",
"https:\/\/*.reddit.com\/user*",
"https:\/\/*.reddit.com\/message*",
"https:\/\/mod.reddit.com\/*",
"https:\/\/ads.reddit.com\/*",
"https:\/\/i.reddit.com\/*",
"https:\/\/m.reddit.com\/*",
"https:\/\/static.reddit.com\/*",
"https:\/\/thumbs.reddit.com\/*",
"https:\/\/blog.reddit.com\/*",
"https:\/\/code.reddit.com\/*",
"https:\/\/about.reddit.com\/*",
"https:\/\/*.reddit.com\/chat\/*",
"https:\/\/*.reddit.com\/*.compact",
"https:\/\/*.reddit.com\/*.compact?*",
"https:\/\/*.reddit.com\/*.mobile",
"https:\/\/*.reddit.com\/*.mobile?*",
"https:\/\/*.reddit.com\/*.json",
"https:\/\/*.reddit.com\/*.json?*",
"https:\/\/*.reddit.com\/*.json-html",
"https:\/\/*.reddit.com\/*.json-html?*"
],
"runs_at": "document_end",
"js": [
"client.js"
],
"css": [
"client.css"
]
}
],
"action": {
"default_title": "Reddit Publish Date"
},
"web_accessible_resources": [
{
"resources": [
"client.js",
"client.css",
"background.js"
],
"matches": [
"https:\/\/*.reddit.com\/*"
]
}
]
}