Freemium Articles

Read premium articles for free

Freemium Articles란 무엇입니까?

Freemium Articles은(는) Reed Stewart에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Read premium articles for free"입니다.

확장 프로그램 스크린샷

screenshot

Freemium Articles 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Freemium Articles Freemium Articles
ID doejmahfiibmfieijikpadphmagabobb
공식 URL https://chrome.google.com/webstore/detail/freemium-articles/doejmahfiibmfieijikpadphmagabobb
설명 Read premium articles for free
파일 크기 115 KB
설치 횟수 404
현재 버전 1.0.5
최근 업데이트 2020-10-14
출시 날짜 2020-07-20
평점 3.25/5 총 4 개의 평점
개발자 Reed Stewart
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
            ]
        }
    ]
}