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.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Sked Media Library拡張機能のCRXファイルをダウンロード

Sked Media Library拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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 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
Eメール [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"
            ]
        }
    ]
}