StopLoading - Za Warudo

Stops Certain Pages to stop loading after the main content has.

StopLoading - Za Warudo란 무엇입니까?

StopLoading - Za Warudo은(는) pathway27에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stops Certain Pages to stop loading after the main content has."입니다.

확장 프로그램 스크린샷

screenshot

StopLoading - Za Warudo 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A plugin that stops the page loading after the main content has loaded, getting around paywalls that shouldn't be there and any unethical scripts.

Currently works on:

- https://www.bloomberg.com/news/articles/*/*
- https://www.afr.com/*/*
- https://www.smh.com.au/*/* (Might need to refresh)
- https://www.nytimes.com/*/*",
- https://www.economist.com/*/*"
- https://www.businessinsider.com/*                    

확장 프로그램 기본 정보

이름 StopLoading - Za Warudo StopLoading - Za Warudo
ID jmoafdddkdmbjibkplflbekbeijniadd
공식 URL https://chromewebstore.google.com/detail/stoploading-za-warudo/jmoafdddkdmbjibkplflbekbeijniadd
설명 Stops Certain Pages to stop loading after the main content has.
파일 크기 1.85 MB
설치 횟수 306
현재 버전 1.0.4
최근 업데이트 2022-02-27
출시 날짜 2021-06-01
평점 5.00/5 총 7 개의 평점
개발자 pathway27
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/pathway27/stop-loading-za-warudo
도움말 페이지 URL https://github.com/pathway27/stop-loading-za-warudo
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "StopLoading - Za Warudo",
    "version": "1.0.4",
    "icons": {
        "16": "assets\/icons\/16.png",
        "32": "assets\/icons\/32.png",
        "48": "assets\/icons\/48.png",
        "128": "assets\/icons\/128.png"
    },
    "description": "Stops Certain Pages to stop loading after the main content has.",
    "homepage_url": "https:\/\/github.com\/pathway27\/stop-loading-za-warudo",
    "short_name": "Za Warudo",
    "permissions": [
        "activeTab",
        "https:\/\/www.bloomberg.com\/news\/*",
        "https:\/\/www.afr.com\/*\/*",
        "https:\/\/www.smh.com.au\/*\/*",
        "https:\/\/www.nytimes.com\/*\/*",
        "https:\/\/www.economist.com\/*\/*",
        "https:\/\/www.businessinsider.com\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "author": "pathway27",
    "minimum_chrome_version": "49",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/16.png",
            "32": "assets\/icons\/32.png",
            "48": "assets\/icons\/48.png",
            "128": "assets\/icons\/128.png"
        },
        "default_title": "tiny title",
        "chrome_style": false
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true,
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.bloomberg.com\/news\/articles\/*\/*",
                "https:\/\/www.afr.com\/*\/*",
                "https:\/\/www.smh.com.au\/*\/*",
                "https:\/\/www.nytimes.com\/*\/*",
                "https:\/\/www.economist.com\/*\/*",
                "https:\/\/www.businessinsider.com\/*"
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "styles\/options.css",
        "js\/script.bundle.js",
        "assets\/za-warudo.gif"
    ]
}