Sked Media Library

Add content to Sked's Media Library.

Qu'est-ce que Sked Media Library ?

Sked Media Library est une extension Chrome développée par https://skedsocial.com, et sa fonction principale est "Add content to Sked's Media Library.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Sked Media Library

Téléchargez les fichiers d'extension Sked Media Library au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Sked Media Library Sked Media Library
ID mihodkbdbdimlfpbfhfjjodgjgkfmgec
URL Officiel https://chromewebstore.google.com/detail/sked-media-library/mihodkbdbdimlfpbfhfjjodgjgkfmgec
Description Add content to Sked's Media Library.
Taille du Fichier 1.46 MB
Nombre d'Installations 488
Version Actuelle 1.0.11
Dernière Mise à Jour 2024-02-25
Date de Publication 2020-06-23
Évaluation 1.00/5 Total 2 Évaluations
Développeur https://skedsocial.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://skedsocial.com
URL de la Page d'Aide https://help.skedsocial.com
URL de la Page de Politique de Confidentialité https://skedsocial.com/privacy-policy
Langues Prises en Charge 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"
            ]
        }
    ]
}