Tournesol Extension
Open Tournesol directly from YouTube
Tournesol Extension란 무엇입니까?
Tournesol Extension은(는) Tournesol Association에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open Tournesol directly from YouTube"입니다.
확장 프로그램 스크린샷
Tournesol Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The extension facilitates using and contributing to Tournesol, a participatory research project about the ethics of algorithms and recommender systems. 1. See Tournesol's recommendations directly in your YouTube home page, even without a Tournesol account. 2. While connected to Tournesol, compare the videos you just watched to help the research team. 3. Or add videos to your rate-later list to compare them later. ❤️ The Tournesol project is actively looking for new contributors! -> https://tournesol.app
확장 프로그램 기본 정보
이름 | Tournesol Extension |
ID | nidimbejmadpggdgooppinedbggeacla |
공식 URL | https://chromewebstore.google.com/detail/tournesol-extension/nidimbejmadpggdgooppinedbggeacla |
설명 | Open Tournesol directly from YouTube |
파일 크기 | 132 KB |
설치 횟수 | 5,098 |
현재 버전 | 3.5.2 |
최근 업데이트 | 2024-02-12 |
출시 날짜 | 2020-11-12 |
평점 | 4.70/5 총 33 개의 평점 |
개발자 | Tournesol Association |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://tournesol.app |
개인정보 보호 정책 페이지 URL | https://tournesol.app/about/privacy_policy |
지원되는 언어 | en,fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tournesol Extension", "version": "3.5.2", "description": "Open Tournesol directly from YouTube", "permissions": [ "https:\/\/tournesol.app\/", "https:\/\/api.tournesol.app\/", "https:\/\/www.youtube.com\/", "activeTab", "contextMenus", "storage", "webNavigation", "webRequest", "webRequestBlocking" ], "manifest_version": 2, "icons": { "64": "Logo64.png", "128": "Logo128.png", "512": "Logo512.png" }, "background": { "page": "background.html", "persistent": true }, "browser_action": { "default_icon": { "16": "Logo16.png", "64": "Logo64.png" }, "default_title": "Tournesol actions", "default_popup": "browserAction\/menu.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "importWrappers\/displayHomeRecommendations.js", "importWrappers\/displaySearchRecommendations.js" ], "css": [ "addTournesolRecommendations.css" ], "run_at": "document_start", "all_frames": true }, { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "importWrappers\/addVideoStatistics.js", "importWrappers\/addModal.js", "importWrappers\/addVideoButtons.js" ], "css": [ "addVideoStatistics.css", "addModal.css", "addVideoButtons.css" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "https:\/\/tournesol.app\/*" ], "js": [ "importWrappers\/fetchTournesolToken.js", "importWrappers\/fetchTournesolRecommendationsLanguages.js" ], "run_at": "document_end", "all_frames": true } ], "options_ui": { "page": "options\/options.html", "open_in_tab": true }, "default_locale": "en", "web_accessible_resources": [ "Logo128.png", "html\/*", "images\/*", "utils.js", "models\/*", "config.js", "displayHomeRecommendations.js", "addVideoButtons.js", "addVideoStatistics.js", "displaySearchRecommendations.js", "fetchTournesolToken.js", "fetchTournesolRecommendationsLanguages.js", "addModal.js" ] } |