NYTimes Free Cooking

Removes signup/ subscription popup from the NYTimes cooking website.

NYTimes Free Cookingとは何ですか?

NYTimes Free Cookingはrajesh64727によって開発されたChromeの拡張機能で、その主な機能は「Removes signup/ subscription popup from the NYTimes cooking website.」です。

拡張機能のスクリーンショット

screenshot
screenshot

NYTimes Free Cooking拡張機能のCRXファイルをダウンロード

NYTimes Free Cooking拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        It removes the popup so that you can access the recipes without any disturbance.

Code file is simple ( a few lines of CSS update code in JS ) and if you want to improve it, source code is available at 
https://github.com/rajesh64727/BrowserExtensions/tree/master/NYTimesCooking                    

拡張機能の基本情報

名前 NYTimes Free Cooking NYTimes Free Cooking
ID dfcgnppjemgegjipdnfbhekjnkhkcpom
公式URL https://chromewebstore.google.com/detail/nytimes-free-cooking/dfcgnppjemgegjipdnfbhekjnkhkcpom
説明 Removes signup/ subscription popup from the NYTimes cooking website.
ファイルサイズ 25.98 KB
インストール数 121
現在のバージョン 1.0.0
最終更新日 2022-03-15
公開日 2022-03-15
評価 5.00/5 合計 1 レビュー
開発者 rajesh64727
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://rajesh64727.github.io
ヘルプページのURL https://rajesh64727.github.io
プライバシーポリシーページのURL https://rajesh64727.github.io/privacy.html
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NYTimes Free Cooking",
    "version": "1.0.0",
    "description": "Removes signup\/ subscription popup from the NYTimes cooking website.",
    "icons": {
        "128": "images\/nyc_icon128.png",
        "48": "images\/nyc_icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/cooking.nytimes.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}