NY Times Articles

The New York Times Articles full access. It is a 'Proof of Concept' work.

O que é NY Times Articles?

NY Times Articles é uma extensão do Chrome desenvolvida por rajesh64727, e sua principal característica é "The New York Times Articles full access. It is a 'Proof of Concept' work.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão NY Times Articles

Baixe arquivos de extensão NY Times Articles no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        This allows user to read full article without registering to the New York Times website. 

There is no intent to harm anybody or the News site. In case of any copyright or legal issue please let me know before.

I support free press, peace.

+ Also try the NYT cooking section extension on https://chrome.google.com/webstore/detail/nytimes-free-cooking/dfcgnppjemgegjipdnfbhekjnkhkcpom

Updates:
+April 1, 2022 - updated to Chrome manifest 3

===============================================================
If you are a developer and want to improve it ( or your extension) here is the source code path
https://github.com/rajesh64727/BrowserExtensions/tree/master/NYTimesChromeExtn

===============================================================                    

Informações Básicas da Extensão

Nome NY Times Articles NY Times Articles
ID joojgneaeojkmbijpheacjlpfbahhldc
URL Oficial https://chromewebstore.google.com/detail/ny-times-articles/joojgneaeojkmbijpheacjlpfbahhldc
Descrição The New York Times Articles full access. It is a 'Proof of Concept' work.
Tamanho do Arquivo 31.09 KB
Contagem de Instalações 4,173
Versão Atual 1.2.0
Última Atualização 2022-04-02
Data de Publicação 2020-08-13
Classificação 4.43/5 Total de 46 Avaliações
Desenvolvedor rajesh64727
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://rajesh64727.github.io
URL da Página de Política de Privacidade https://rajesh64727.github.io/privacy.html
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NY Times Articles",
    "version": "1.2.0",
    "description": "The New York Times Articles full access. It is a 'Proof of Concept' work.",
    "action": {
        "default_icon": "images\/icon48.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "images\/icon128.png",
        "64": "images\/icon64.png",
        "48": "images\/icon48.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nytimes.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}