StopLoading - Za Warudo

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

StopLoading - Za Warudo là gì?

StopLoading - Za Warudo là một tiện ích mở rộng Chrome được phát triển bởi pathway27, và tính năng chính của nó là "Stops Certain Pages to stop loading after the main content has.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng StopLoading - Za Warudo

Tải xuống các tệp mở rộng StopLoading - Za Warudo dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/*                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên StopLoading - Za Warudo StopLoading - Za Warudo
ID jmoafdddkdmbjibkplflbekbeijniadd
URL Chính Thức https://chromewebstore.google.com/detail/stoploading-za-warudo/jmoafdddkdmbjibkplflbekbeijniadd
Mô tả Stops Certain Pages to stop loading after the main content has.
Kích Thước Tệp 1.85 MB
Số Lần Cài Đặt 306
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2022-02-27
Ngày Phát Hành 2021-06-01
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển pathway27
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/pathway27/stop-loading-za-warudo
URL Trang Trợ Giúp https://github.com/pathway27/stop-loading-za-warudo
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}