Sked Media Library

Add content to Sked's Media Library.

¿Qué es Sked Media Library?

Sked Media Library es una extensión de Chrome desarrollada por https://skedsocial.com, y su función principal es "Add content to Sked's Media Library.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Sked Media Library

Descarga archivos de extensión Sked Media Library en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Sked Media Library Sked Media Library
ID mihodkbdbdimlfpbfhfjjodgjgkfmgec
URL Oficial https://chromewebstore.google.com/detail/sked-media-library/mihodkbdbdimlfpbfhfjjodgjgkfmgec
Descripción Add content to Sked's Media Library.
Tamaño del Archivo 1.46 MB
Cantidad de Instalaciones 488
Versión Actual 1.0.11
Última Actualización 2024-02-25
Fecha de Publicación 2020-06-23
Calificación 1.00/5 Total de 2 Calificaciones
Desarrollador https://skedsocial.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://skedsocial.com
URL de la Página de Ayuda https://help.skedsocial.com
URL de la Página de Política de Privacidad https://skedsocial.com/privacy-policy
Idiomas Soportados 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"
            ]
        }
    ]
}