Free Premium TechInAsia

Remove 'paywalled' articles on TechInAsia

Free Premium TechInAsia क्या है?

Free Premium TechInAsia Deniz Durmus द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove 'paywalled' articles on TechInAsia"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Free Premium TechInAsia एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}