Sked Media Library

Add content to Sked's Media Library.

Cos'è Sked Media Library?

Sked Media Library è un'estensione di Chrome sviluppata da https://skedsocial.com, e la sua funzione principale è "Add content to Sked's Media Library.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Sked Media Library

Scarica i file di estensione Sked Media Library in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Sked Media Library is for Sked Social users who want to collect and add items to their Library in Sked from around the web.

You will need to be an existing Sked Social customer to use this Chrome Web Store extension.

Simply right click any image you see when browsing a website and then the 'Add to library collection' item displayed. 

Click the Sked Social icon in your menu bar to change the library collection that new items will be saved to.                    

Informazioni di Base sull'Estensione

Nome Sked Media Library Sked Media Library
ID mihodkbdbdimlfpbfhfjjodgjgkfmgec
URL Ufficiale https://chromewebstore.google.com/detail/sked-media-library/mihodkbdbdimlfpbfhfjjodgjgkfmgec
Descrizione Add content to Sked's Media Library.
Dimensione del File 1.46 MB
Conteggio Installazioni 488
Versione Corrente 1.0.11
Ultimo Aggiornamento 2024-02-25
Data di Pubblicazione 2020-06-23
Valutazione 1.00/5 Totale 2 Valutazioni
Sviluppatore https://skedsocial.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://skedsocial.com
URL della Pagina di Aiuto https://help.skedsocial.com
URL della Pagina della Politica sulla Privacy https://skedsocial.com/privacy-policy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sked Media Library",
    "author": "Sked Social",
    "version": "1.0.11",
    "description": "Add content to Sked's Media Library.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo_16.png",
            "32": "images\/logo_32.png",
            "48": "images\/logo_48.png",
            "128": "images\/logo_128.png"
        }
    },
    "icons": {
        "16": "images\/logo_16.png",
        "32": "images\/logo_32.png",
        "48": "images\/logo_48.png",
        "128": "images\/logo_128.png"
    },
    "web_accessible_resources": [
        "sharedData.js"
    ],
    "permissions": [
        "*:\/\/*.skedsocial.com\/*",
        "notifications",
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instagram.com\/*",
                "https:\/\/instagram.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}