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
公式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
Eメール [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]"
        }
    }
}