ReviewDB Twitter
Allows you to review other Twitter users
ReviewDB Twitter란 무엇입니까?
ReviewDB Twitter은(는) mantikafasi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to review other Twitter users"입니다.
확장 프로그램 스크린샷
ReviewDB Twitter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A extension which allows you to review other users. Anyone who has the extension will be able to see what you commented. Emoji artwork is based on flattened version of brain tweemoji (licensed under Creative Commons Attribution 4.0 International License. https://github.com/twitter/twemoji/blob/master/LICENSE-GRAPHICS)
확장 프로그램 기본 정보
이름 | ReviewDB Twitter |
ID | kmgbgncbggoffjbefmnknffpofcajohj |
공식 URL | https://chromewebstore.google.com/detail/reviewdb-twitter/kmgbgncbggoffjbefmnknffpofcajohj |
설명 | Allows you to review other Twitter users |
파일 크기 | 56.42 KB |
설치 횟수 | 88 |
현재 버전 | 0.1.1 |
최근 업데이트 | 2023-06-06 |
출시 날짜 | 2023-06-06 |
평점 | 3.40/5 총 5 개의 평점 |
개발자 | mantikafasi |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://reviewdb.mantikafasi.dev |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ReviewDB Twitter", "version": "0.1.1", "description": "Allows you to review other Twitter users", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "web_accessible_resources": [ { "resources": [ "bundle.js", "bundle.css" ], "matches": [ "https:\/\/twitter.com\/*" ] }, { "resources": [ "authpage.html" ], "matches": [ "https:\/\/manti.vendicated.dev\/*" ] } ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "run_at": "document_start", "js": [ "content.js" ] }, { "matches": [ "https:\/\/manti.vendicated.dev\/api\/reviewdb-twitter\/auth*" ], "js": [ "auth.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "externally_connectable": { "matches": [ "https:\/\/manti.vendicated.dev\/api\/reviewdb-twitter\/auth", "https:\/\/twitter.com\/*" ] } } |