Free Premium TechInAsia
Remove 'paywalled' articles on TechInAsia
Free Premium TechInAsia란 무엇입니까?
Free Premium TechInAsia은(는) Deniz Durmus에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove 'paywalled' articles on TechInAsia"입니다.
확장 프로그램 스크린샷
Free Premium TechInAsia 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.
확장 프로그램 기본 정보
이름 | |
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" ] } ] } |