YouTube Suggestion Extractor

The "YouTube Suggestion Extractor" is a Chrome extension designed to enhance the user experience on YouTube by extracting and…

Vad är YouTube Suggestion Extractor?

YouTube Suggestion Extractor är en Chrome-tillägg utvecklad av https://www.bigtechies.com, och dess huvudfunktion är "The "YouTube Suggestion Extractor" is a Chrome extension designed to enhance the user experience on YouTube by extracting and…".

Tilläggsskärmbilder

screenshot

Ladda ner YouTube Suggestion Extractor-förlängningens CRX-fil

Ladda ner YouTube Suggestion Extractor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        The "YouTube Suggestion Extractor" is a Chrome extension designed to enhance the user experience on YouTube by extracting and providing suggestions from the currently active YouTube page. This extension is particularly useful for users who frequently explore YouTube and want to streamline their experience in discovering new content.                    

Grundläggande Information om Tillägg

Namn YouTube Suggestion Extractor YouTube Suggestion Extractor
ID fihnbdolhnfphjjimamjegfninbfffhl
Officiell webbadress https://chromewebstore.google.com/detail/youtube-suggestion-extrac/fihnbdolhnfphjjimamjegfninbfffhl
Beskrivning The "YouTube Suggestion Extractor" is a Chrome extension designed to enhance the user experience on YouTube by extracting and…
Filstorlek 18.47 KB
Antal Installationer 64
Aktuell Version 1.0
Senast Uppdaterad 2024-02-16
Publiceringsdatum 2024-02-16
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://www.bigtechies.com
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://www.bigtechies.com/privacy-policy
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Suggestion Extractor",
    "version": "1.0",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*",
        ""
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}