Freemium Articles

Read premium articles for free

Vad är Freemium Articles?

Freemium Articles är en Chrome-tillägg utvecklad av Reed Stewart, och dess huvudfunktion är "Read premium articles for free".

Tilläggsskärmbilder

screenshot

Ladda ner Freemium Articles-förlängningens CRX-fil

Ladda ner Freemium Articles-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Freemium Articles Freemium Articles
ID doejmahfiibmfieijikpadphmagabobb
Officiell webbadress https://chrome.google.com/webstore/detail/freemium-articles/doejmahfiibmfieijikpadphmagabobb
Beskrivning Read premium articles for free
Filstorlek 115 KB
Antal Installationer 404
Aktuell Version 1.0.5
Senast Uppdaterad 2020-10-14
Publiceringsdatum 2020-07-20
Betyg 3.25/5 Totalt 4 Betyg
Utvecklare Reed Stewart
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}