New York Times Byline Restorer

Restores author bylines to the New York Times homepage and section pages

New York Times Byline Restorerคืออะไร?

New York Times Byline Restorer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://danstillman.com และคุณลักษณะหลักของมันคือ "Restores author bylines to the New York Times homepage and section pages"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย New York Times Byline Restorer

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

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

                        The New York Times removed bylines from its homepage and section pages in August 2018. This adds them back.

It can also optionally remove the “x min read” lines added to the homepage in September 2022.                    

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

ชื่อ New York Times Byline Restorer New York Times Byline Restorer
ID gfiejlblkeelpnbmknocgaedclbimdja
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/new-york-times-byline-res/gfiejlblkeelpnbmknocgaedclbimdja
คำอธิบาย Restores author bylines to the New York Times homepage and section pages
ขนาดไฟล์ 27.62 KB
จำนวนการติดตั้ง 827
เวอร์ชันปัจจุบัน 2.0.0
อัปเดตครั้งล่าสุด 2022-09-18
วันที่เผยแพร่ 2019-10-10
คะแนน 5.00/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา https://danstillman.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/dstillman/nyt-byline-restorer
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New York Times Byline Restorer",
    "description": "Restores author bylines to the New York Times homepage and section pages",
    "manifest_version": 2,
    "version": "2.0.0",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nytimes.com\/"
            ],
            "js": [
                "start.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.nytimes.com\/*"
            ],
            "js": [
                "bylines.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "https:\/\/*.nytimes.com\/*",
        "storage"
    ],
    "web_accessible_resources": [
        "styleStart.css",
        "announcement1.html"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}