Tournesol Extension

Open Tournesol directly from YouTube

Tournesol Extension क्या है?

Tournesol Extension Tournesol Association द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Open Tournesol directly from YouTube"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tournesol Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    ]
}