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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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]"
        }
    }
}