RadiTube Browser Extension
The RadiTube Browser Extension shows the metadata of removed YouTube videos.
RadiTube Browser Extension란 무엇입니까?
RadiTube Browser Extension은(는) RadiTube Technologies Inc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The RadiTube Browser Extension shows the metadata of removed YouTube videos."입니다.
확장 프로그램 스크린샷
RadiTube Browser Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
YouTube's moderation policy is opaque and ad-hoc. Every once in a while YouTube publishes a PR statement notifying the public that certain channels have been removed. However it rarely publishes which videos and channels are exactly removed. The RadiTube Browser Extension tries to make YouTube's moderation policy more clear by showing the metadata (transcripts, title, descriptions, channel names, views) of removed YouTube videos. It's a perfect companion for journalists and researchers who are doing research into disinformation. All the metadata is permanently stored on the Arweave network. The extension currently stored a limited amount of removed videos (roughly 80.000), but we expect to rapidly increase this in the upcoming months.
확장 프로그램 기본 정보
이름 | |
ID | bhkkfpncfhigbkbnpkaobmiipenjndhm |
공식 URL | https://chrome.google.com/webstore/detail/raditube-browser-extensio/bhkkfpncfhigbkbnpkaobmiipenjndhm |
설명 | The RadiTube Browser Extension shows the metadata of removed YouTube videos. |
파일 크기 | 476 KB |
설치 횟수 | 93 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2021-09-29 |
출시 날짜 | 2021-09-29 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | RadiTube Technologies Inc |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.raditube.com |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "RadiTube Browser Extension", "version": "1.0.0", "description": "The RadiTube Browser Extension shows the metadata of removed YouTube videos.", "homepage_url": "https:\/\/www.raditube.com", "manifest_version": 2, "minimum_chrome_version": "74", "icons": { "128": "\/icon.png" }, "permissions": [ "webNavigation" ], "optional_permissions": [ "https:\/\/*.youtube.com\/*" ], "options_ui": { "chrome_style": true, "page": "\/options.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "run_at": "document_start", "all_frames": true, "js": [ "\/contentScript.js" ] } ], "background": { "scripts": [ "\/background.js" ] } } |