Sked Media Library

Add content to Sked's Media Library.

Was ist Sked Media Library?

Sked Media Library ist eine Chrome-Erweiterung, die von https://skedsocial.com entwickelt wurde, und ihr Hauptmerkmal ist "Add content to Sked's Media Library.".

Erweiterungsscreenshots

screenshot
screenshot

Sked Media Library-Erweiterungs-CRX-Datei herunterladen

Laden Sie Sked Media Library-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Sked Media Library Sked Media Library
ID mihodkbdbdimlfpbfhfjjodgjgkfmgec
Offizielle URL https://chromewebstore.google.com/detail/sked-media-library/mihodkbdbdimlfpbfhfjjodgjgkfmgec
Beschreibung Add content to Sked's Media Library.
Dateigröße 1.46 MB
Installationsanzahl 488
Aktuelle Version 1.0.11
Letztes Update 2024-02-25
Veröffentlichungsdatum 2020-06-23
Bewertung 1.00/5 Insgesamt 2 Bewertungen
Entwickler https://skedsocial.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://skedsocial.com
Hilfeseite URL https://help.skedsocial.com
URL der Datenschutzrichtlinien-Seite https://skedsocial.com/privacy-policy
Unterstützte Sprachen 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"
            ]
        }
    ]
}