Freemium Articles

Read premium articles for free

Co je Freemium Articles?

Freemium Articles je rozšíření Chrome vyvinuté Reed Stewart, a jeho hlavní funkcí je „Read premium articles for free“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Freemium Articles

Stáhněte si soubory rozšíření Freemium Articles ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Freemium Articles is a completely free chrome extension that will 'unlock' premium articles on the NZ Herald website.

If you're having any troubles and the articles aren't being displayed I recommend hard reloading the page. You can do this easily in Chrome by pressing the Ctrl + Shift + R key's at the same time, or for Mac use the keys Command + Shift + R.

v1.0.5
- Fixed extension not showing articles again....
- Fixed "Big Read" articles not being displayed

v1.0.4
- Added Auto Load feature, click this checkbox to load articles automatically without having to press extension button
- Fixed issues that was causing content not to load                    

Základní Informace o Rozšíření

Název Freemium Articles Freemium Articles
ID doejmahfiibmfieijikpadphmagabobb
Oficiální URL https://chrome.google.com/webstore/detail/freemium-articles/doejmahfiibmfieijikpadphmagabobb
Popis Read premium articles for free
Velikost souboru 115 KB
Počet instalací 404
Aktuální Verze 1.0.5
Poslední Aktualizace 2020-10-14
Datum Vydání 2020-07-20
Hodnocení 3.25/5 Celkem 4 Hodnocení
Vývojář Reed Stewart
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Freemium Articles",
    "description": "Read premium articles for free",
    "version": "1.0.5",
    "manifest_version": 2,
    "icons": {
        "128": ".\/img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": ".\/img\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.nzherald.co.nz\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}