Unwanted Opinions
Lets you block tweets using various options.
Unwanted Opinions란 무엇입니까?
Unwanted Opinions은(는) Xinto에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Lets you block tweets using various options."입니다.
확장 프로그램 스크린샷
Unwanted Opinions 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Unwanted Opinion saves your eyes by blocking tweets using filters you specify. Still want to see the tweet? Press the Show button!
확장 프로그램 기본 정보
이름 | |
ID | ejobchilnlocfaljfaakomkhaajkojin |
공식 URL | https://chromewebstore.google.com/detail/unwanted-opinions/ejobchilnlocfaljfaakomkhaajkojin |
설명 | Lets you block tweets using various options. |
파일 크기 | 22.77 KB |
설치 횟수 | 27 |
현재 버전 | 0.2.1 |
최근 업데이트 | 2022-11-24 |
출시 날짜 | 2022-11-21 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Xinto |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://vencord.dev/cloud/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Unwanted Opinions", "version": "0.2.1", "description": "Lets you block tweets using various options.", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "action": { "default_title": "Unwanted Opinion", "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ], "resources": [ "opinionator.js" ] } ] } |