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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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]"
        }
    }
}