Youtube Subscriptions Transfer

Transferring subscriptions from one YouTube account to another

Τι είναι το Youtube Subscriptions Transfer;

Το Youtube Subscriptions Transfer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://biplobsd.me, και η κύρια λειτουργία του είναι "Transferring subscriptions from one YouTube account to another".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Youtube Subscriptions Transfer

Λήψη αρχείων επέκτασης Youtube Subscriptions Transfer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Youtube Subscriptions Transfer

Transferring subscriptions from one YouTube account to another.

This extension that allows you to transfer subscriptions from one account to another. The extension collects a list of channels and enables you to subscribe or unsubscribe to each channel. It interacts with the DOM using xpath or Youtube Data API v3.

FEATURES
----------------------------------
- Search switch channel
- Setting Up Your Own YouTube Data API - https://github.com/biplobsd/yst#setting-up-your-own-youtube-data-api
- Google takeout zip import - https://github.com/biplobsd/yst#google-takeout 
- Collect all subscriptions from your current active tab on YouTube and save them to the Data section
- Subscribe channel with collected list
- Unsubscribe, one click unsubscribe all channel.
- Subscriptions backup
- Channels id scraping
- Dark/Light theme
- XPath auto update
- Mode switch
- Open-source 

if you need more feature on this app, highly requested to create an issue on our GitHub repository https://github.com/biplobsd/yst/issues tab.

Read more: 
https://biplobsd.me/blogs/view/Youtube%20Subscriptions%20Transfer.md
https://biplobsd.me/apps/view/yst.md                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Youtube Subscriptions Transfer Youtube Subscriptions Transfer
ID fanknehiohibiphenfaigbmefncbheaa
Επίσημο URL https://chromewebstore.google.com/detail/youtube-subscriptions-tra/fanknehiohibiphenfaigbmefncbheaa
Περιγραφή Transferring subscriptions from one YouTube account to another
Μέγεθος Αρχείου 151 KB
Αριθμός Εγκαταστάσεων 795
Τρέχουσα Έκδοση 1.6
Τελευταία Ενημέρωση 2023-11-06
Ημερομηνία Δημοσίευσης 2023-07-12
Αξιολόγηση 4.89/5 Συνολικά 9 Αξιολογήσεις
Προγραμματιστής https://biplobsd.me
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://biplobsd.me/apps/view/yst.md
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/biplobsd/yst
URL της Σελίδας Πολιτικής Απορρήτου https://biplobsd.me/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Subscriptions Transfer",
    "description": "Transferring subscriptions from one YouTube account to another",
    "version": "1.6",
    "manifest_version": 3,
    "icons": {
        "16": "src\/assets\/icons\/icon16.png",
        "32": "src\/assets\/icons\/icon32.png",
        "48": "src\/assets\/icons\/icon48.png",
        "128": "src\/assets\/icons\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/index.ts-loader-2a302b3d.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "options_ui": {
        "page": "src\/options\/options.html",
        "open_in_tab": false
    },
    "action": {
        "default_popup": "src\/popup\/popup.html",
        "default_icon": {
            "16": "src\/assets\/icons\/icon16.png",
            "32": "src\/assets\/icons\/icon32.png",
            "48": "src\/assets\/icons\/icon48.png",
            "128": "src\/assets\/icons\/icon128.png"
        }
    },
    "permissions": [
        "tabs",
        "identity",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "resources": [
                "assets\/index-5bb476be.js",
                "assets\/communication-de7f9cff.js",
                "assets\/index.ts-4b364051.js"
            ],
            "use_dynamic_url": true
        }
    ]
}