Free Premium TechInAsia

Remove 'paywalled' articles on TechInAsia

Free Premium TechInAsia là gì?

Free Premium TechInAsia là một tiện ích mở rộng Chrome được phát triển bởi Deniz Durmus, và tính năng chính của nó là "Remove 'paywalled' articles on TechInAsia".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Free Premium TechInAsia

Tải xuống các tệp mở rộng Free Premium TechInAsia 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 simple plugin which helps you to access soft-paywalled articles on TechInAsia, both for English and Indonesian versions.

Improvements for version v2:
- Removing the hard prompt for paywall at the bottom of the page
- Better detection of paywall tags
- Fixing the broken content on the article due to lazy loading of the content.

Improvements for version v3:
 - Fixing the issue with the redundant requests on click
 - Enabling data unmasking for company pages
 - Update on context menu text

Improvements for version v4:
 - Fixing the unblocking issue which requires refreshing of the extension

With v3, you can now unblock the contents of a company page, where you can see the funding details, as well as email information, if there is any. Please note, as there is no way to replicate the styling, user of the extension accepts that although the shown data is retrieved properly, it will be shown in a different format than the site's own characteristic format.                    

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

Tên Free Premium TechInAsia Free Premium TechInAsia
ID hklabdkmebhjncnekadolhpghaohghja
URL Chính Thức https://chromewebstore.google.com/detail/free-premium-techinasia/hklabdkmebhjncnekadolhpghaohghja
Mô tả Remove 'paywalled' articles on TechInAsia
Kích Thước Tệp 18.8 KB
Số Lần Cài Đặt 265
Phiên Bản Hiện Tại 4.0
Cập Nhật Lần Cuối 2024-02-20
Ngày Phát Hành 2022-09-23
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Deniz Durmus
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://gist.github.com/durmusdeniz/1b4213536ce0547f359760342c9e1bfe
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Free Premium TechInAsia",
    "description": "Remove 'paywalled' articles on TechInAsia",
    "version": "4.0",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_icon": "icon.png",
        "default_title": "Free Premium TechInAsia",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "contextMenus"
    ],
    "host_permissions": [
        "https:\/\/*.techinasia.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.techinasia.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}