Sked Media Library
Add content to Sked's Media Library.
Sked Media Library क्या है?
Sked Media Library https://skedsocial.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add content to Sked's Media Library."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Sked Media Library एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } ] } |