Sked Media Library

Add content to Sked's Media Library.

O que é Sked Media Library?

Sked Media Library é uma extensão do Chrome desenvolvida por https://skedsocial.com, e sua principal característica é "Add content to Sked's Media Library.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Sked Media Library

Baixe arquivos de extensão Sked Media Library no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Sked Media Library Sked Media Library
ID mihodkbdbdimlfpbfhfjjodgjgkfmgec
URL Oficial https://chromewebstore.google.com/detail/sked-media-library/mihodkbdbdimlfpbfhfjjodgjgkfmgec
Descrição Add content to Sked's Media Library.
Tamanho do Arquivo 1.46 MB
Contagem de Instalações 488
Versão Atual 1.0.11
Última Atualização 2024-02-25
Data de Publicação 2020-06-23
Classificação 1.00/5 Total de 2 Avaliações
Desenvolvedor https://skedsocial.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://skedsocial.com
URL da Página de Ajuda https://help.skedsocial.com
URL da Página de Política de Privacidade https://skedsocial.com/privacy-policy
Idiomas Suportados 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"
            ]
        }
    ]
}