Free Premium TechInAsia

Remove 'paywalled' articles on TechInAsia

什么是Free Premium TechInAsia?

Free Premium TechInAsia是由Deniz Durmus开发的Chrome扩展程序,该扩展的主要功能是“Remove 'paywalled' articles on TechInAsia”。

扩展截图

screenshot
screenshot

下载Free Premium TechInAsia扩展crx文件

下载Free Premium TechInAsia扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Free Premium TechInAsia Free Premium TechInAsia
ID hklabdkmebhjncnekadolhpghaohghja
官方URL https://chromewebstore.google.com/detail/free-premium-techinasia/hklabdkmebhjncnekadolhpghaohghja
简介 Remove 'paywalled' articles on TechInAsia
文件大小 18.8 KB
安装次数 265
当前版本 4.0
更新时间 2024-02-20
上架时间 2022-09-23
评分 4.25/5 共4次评分
开发者 Deniz Durmus
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://gist.github.com/durmusdeniz/1b4213536ce0547f359760342c9e1bfe
支持的语言 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"
            ]
        }
    ]
}