Sked Media Library
Add content to Sked's Media Library.
Sked Media Library란 무엇입니까?
Sked Media Library은(는) https://skedsocial.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add content to Sked's Media Library."입니다.
확장 프로그램 스크린샷
Sked Media Library 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Sked Media Library |
ID | mihodkbdbdimlfpbfhfjjodgjgkfmgec |
공식 URL | https://chromewebstore.google.com/detail/sked-media-library/mihodkbdbdimlfpbfhfjjodgjgkfmgec |
설명 | Add content to Sked's Media Library. |
파일 크기 | 1.46 MB |
설치 횟수 | 488 |
현재 버전 | 1.0.11 |
최근 업데이트 | 2024-02-25 |
출시 날짜 | 2020-06-23 |
평점 | 1.00/5 총 2 개의 평점 |
개발자 | https://skedsocial.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://skedsocial.com |
도움말 페이지 URL | https://help.skedsocial.com |
개인정보 보호 정책 페이지 URL | https://skedsocial.com/privacy-policy |
지원되는 언어 | 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" ] } ] } |