YoutubeScraper

Scrape all youtube links from a webpage

YoutubeScraper क्या है?

YoutubeScraper Aviad Hadad द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Scrape all youtube links from a webpage"।

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

screenshot

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

crx प्रारूप में YoutubeScraper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Simple extension that just takes every youtube link **visible** on the webpage. (Just scrapes the dom, nothing fancy)

Was built for facebook groups, unfortunately this is not a perfect solution, you must expand all comments otherwise the extension won't find all videos. So don't forget to click on 'View more comments'
(Yeah, it's not ideal - but Facebook API for groups is not really accessible anymore for small devs, so here we are.)

Should be useful also for reddit, or any other website that has a bunch of youtube links.

Probably has bugs, won't always work etc... please report bugs :)

=====
github: https://github.com/sthuck/youtube-extension
Uses images by:
https://www.pexels.com/@burst
https://www.pexels.com/@picjumbo-com-55570
https://www.pexels.com/@vishnu-r-nair-426592
https://www.pexels.com/@markusspiske                    

एक्सटेंशन की मूल जानकारी

नाम YoutubeScraper YoutubeScraper
ID bnhpbgdbhjobeekhbpicbfddmlkfkmih
आधिकारिक URL https://chromewebstore.google.com/detail/youtubescraper/bnhpbgdbhjobeekhbpicbfddmlkfkmih
विवरण Scrape all youtube links from a webpage
फ़ाइल का आकार 357 KB
स्थापना संख्या 129
वर्तमान संस्करण 1.0
अंतिम अपडेट 2018-09-16
प्रकाशन तिथि 2018-09-15
डेवलपर Aviad Hadad
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://goo.gl/forms/2SkFiCYb0M9ZHSPI3
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAn5\/PysWb4rBDNF4IQQoeYjrfqSvBOr2WM6Uh1zNkNyoCTDuq2Oc1THd5C3RiG5+vwYqS65FoLk+LDpkn5CX9E4CBI4t1SkW1I4P+6BhZiz8qXmvJUPUMrC9\/8avcJd712OBc\/bmZWMPxJ\/Eb9osGm6XrXXRTdwWKOtu6kbt9n2tdPWarJNeoZ4c0Y\/tKeaYnQo0kw0G7Eoz+J2Lu+CEJ56jgciLMtJVKtGMeawPHBCW+TYJ7PKlBZ9dV9JNnABqbjbXMYM5Cu2fkFgi2QO45NWibEE7H1v3Ldqzf3rtV8Qz+3FNJ9K8CC3gf\/pkhOmUSuZLJAh8wQ6sMhQYcOn8ElQIDAQAB",
    "name": "YoutubeScraper",
    "version": "1.0",
    "description": "Scrape all youtube links from a webpage",
    "manifest_version": 2,
    "icons": {
        "64": "icon-64.png",
        "512": "icon-512.png"
    },
    "browser_action": {
        "default_icon": {
            "64": "icon-64.png"
        },
        "default_title": "collect youtube links",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "identity"
    ],
    "oauth2": {
        "client_id": "153307209659-17rdaesih3nfgvblb5ccdqnmlcnskjfo.apps.googleusercontent.com",
        "scopes": [
            "email",
            "https:\/\/www.googleapis.com\/auth\/youtube"
        ]
    }
}