Sked Media Library
Add content to Sked's Media Library.
Co to jest Sked Media Library?
Sked Media Library to rozszerzenie Chrome opracowane przez https://skedsocial.com, a jego główną funkcją jest „Add content to Sked's Media Library.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Sked Media Library
Pobierz pliki rozszerzeń Sked Media Library w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Sked Media Library |
ID | mihodkbdbdimlfpbfhfjjodgjgkfmgec |
Oficjalny URL | https://chromewebstore.google.com/detail/sked-media-library/mihodkbdbdimlfpbfhfjjodgjgkfmgec |
Opis | Add content to Sked's Media Library. |
Rozmiar pliku | 1.46 MB |
Liczba instalacji | 488 |
Aktualna Wersja | 1.0.11 |
Ostatnia Aktualizacja | 2024-02-25 |
Data Publikacji | 2020-06-23 |
Ocena | 1.00/5 Łącznie 2 Oceny |
Deweloper | https://skedsocial.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://skedsocial.com |
Adres URL Strony Pomocy | https://help.skedsocial.com |
Adres URL Strony Polityki Prywatności | https://skedsocial.com/privacy-policy |
Obsługiwane Języki | 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" ] } ] } |