Reddit Publish Date

Adds article publish dates to Reddit links.

Reddit Publish Dateคืออะไร?

Reddit Publish Date เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.redditpublishdate.com และคุณลักษณะหลักของมันคือ "Adds article publish dates to Reddit links."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reddit Publish Date

ดาวน์โหลดไฟล์ส่วนขยาย Reddit Publish Date ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ⭐️ Reddit Publish Date works for articles posted on both new AND old reddit!

Don't be mislead by outdated articles. When you're on reddit, this extension checks links to articles and parses the date they were originally published! When a publish date is found, it is added next to the post on both listing and comments pages. You can choose how you would like publication dates to appear and can even choose the date format that you prefer. 

Reddit Publish Date works by in the background and will continuously add publish dates to posts as they're found. 

This extension does not collect any personal data about you or your reddit account. Although the extension itself will only run when you're on reddit, it needs to be able to connect to other websites in order to search for publish dates.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Reddit Publish Date Reddit Publish Date
ID cfkbacelanhcgpkjaocblkpacofnccip
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/reddit-publish-date/cfkbacelanhcgpkjaocblkpacofnccip
คำอธิบาย Adds article publish dates to Reddit links.
ขนาดไฟล์ 135 KB
จำนวนการติดตั้ง 35
เวอร์ชันปัจจุบัน 1.2.3
อัปเดตครั้งล่าสุด 2024-02-22
วันที่เผยแพร่ 2019-04-14
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://www.redditpublishdate.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Publish Date",
    "version": "1.2.3",
    "description": "Adds article publish dates to Reddit links.",
    "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\/*"
            ]
        }
    ]
}