Hide X/Twitter Elements
This extension hides specified elements on the X/Twitter website.
Hide X/Twitter Elements란 무엇입니까?
Hide X/Twitter Elements은(는) https://tweet-reader.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension hides specified elements on the X/Twitter website."입니다.
확장 프로그램 스크린샷
Hide X/Twitter Elements 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The following Element which you chose on the option screen will be hidden after those elements are loaded. (* After changing the settings, please reload the X/Twitter screen with the F5 key.) - Logo in top corner - Home timeline's Title area - Home timeline's Subtitle area - Sidebar Column - Images with Article Link - Who to follow in Timeline - Topics Carousel in Timeline - Follows(Following&Followers) Counts - Actions(Retweets, Quotes, Likes, Bookmarks, Views) Counts - Read From Older button (in Following) - Ads' Border - Focus Mode * When X/Twitter updates the layout of their website, this extension may temporarily stop working. * It'll take about 3 days to 2 weeks for this extension to catch up, after the author recognized it. * Note that X/Twitter updates do not occur in all countries at the same time and there is a lag of several days.
확장 프로그램 기본 정보
이름 | Hide X/Twitter Elements |
ID | bkjfgbniifclpfjdpbjcebndlimfkkeg |
공식 URL | https://chromewebstore.google.com/detail/hide-xtwitter-elements/bkjfgbniifclpfjdpbjcebndlimfkkeg |
설명 | This extension hides specified elements on the X/Twitter website. |
파일 크기 | 50.52 KB |
설치 횟수 | 1,000 |
현재 버전 | 2.10.15 |
최근 업데이트 | 2024-01-05 |
출시 날짜 | 2019-12-25 |
평점 | 2.89/5 총 19 개의 평점 |
개발자 | https://tweet-reader.com |
이메일 | [email protected] |
결제 유형 | in_app |
확장 프로그램 웹 사이트 | https://hte.tweet-reader.com/search/label/Japanese |
도움말 페이지 URL | https://twitter.com/HotChaiLLC |
개인정보 보호 정책 페이지 URL | https://tweet-reader.com/privacy |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "short_name": "HTE", "version": "2.10.15", "default_locale": "en", "description": "__MSG_appDesc__", "icons": { "48": "twit48.png", "128": "twit128.png" }, "action": { "default_icon": "twit48.png", "default_title": "Hide X\/Twitter Elements" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "all_frames": true, "js": [ "functions.js", "twitterstyle.js" ], "matches": [ "http:\/\/www.twitter.com\/*", "https:\/\/www.twitter.com\/*", "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*", "http:\/\/www.x.com\/*", "https:\/\/www.x.com\/*", "http:\/\/x.com\/*", "https:\/\/x.com\/*" ] } ], "options_page": "options.html", "permissions": [ "storage" ] } |