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是由https://danstillman.com開發的Chrome擴展程式,該擴展的主要功能是“Restores author bylines to the New York Times homepage and section pages”。

擴展截圖

screenshot
screenshot

下載New York Times Byline Restorer擴展crx文件

下載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
官方網址 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]"
        }
    }
}