New York Times Byline Restorer

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

New York Times Byline Restorer là gì?

New York Times Byline Restorer là một tiện ích mở rộng Chrome được phát triển bởi https://danstillman.com, và tính năng chính của nó là "Restores author bylines to the New York Times homepage and section pages".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng New York Times Byline Restorer

Tải xuống các tệp mở rộng New York Times Byline Restorer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên New York Times Byline Restorer New York Times Byline Restorer
ID gfiejlblkeelpnbmknocgaedclbimdja
URL Chính Thức https://chromewebstore.google.com/detail/new-york-times-byline-res/gfiejlblkeelpnbmknocgaedclbimdja
Mô tả Restores author bylines to the New York Times homepage and section pages
Kích Thước Tệp 27.62 KB
Số Lần Cài Đặt 827
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2022-09-18
Ngày Phát Hành 2019-10-10
Đánh Giá 5.00/5 Tổng số 12 Đánh Giá
Nhà Phát Triển https://danstillman.com
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/dstillman/nyt-byline-restorer
Ngôn Ngữ Được Hỗ Trợ 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]"
        }
    }
}