Full Screen Viewer for Instagram

Creates a picture frame from Instagram Images v1.5

Full Screen Viewer for Instagram क्या है?

Full Screen Viewer for Instagram http://jacques-applebaum.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Creates a picture frame from Instagram Images v1.5"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Full Screen Viewer for Instagram एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Creates a photo magazine from Instagram photos.

This extension works on instagram.com. When you navigate there it will create a picture frame from your Instagram feed.

Press the "Slideshow" button to enter picture frame mode.

Double click anywhere in the frame to pause the stream.

Click "Add Images" to add images to the picture frame.

There are themes to choose from and other settings when you click on the extension icon.

** This is not affiliated with Instagram. I made this myself. **

Feel free to send me an email with feedback. Jacques dot Applebaum @ gmail                    

एक्सटेंशन की मूल जानकारी

नाम Full Screen Viewer for Instagram Full Screen Viewer for Instagram
ID loaoibajbaeflfkkbclalljffkhnffgj
आधिकारिक URL https://chrome.google.com/webstore/detail/full-screen-viewer-for-in/loaoibajbaeflfkkbclalljffkhnffgj
विवरण Creates a picture frame from Instagram Images v1.5
फ़ाइल का आकार 64.33 KB
स्थापना संख्या 1,000
वर्तमान संस्करण 1.5
अंतिम अपडेट 2021-11-17
प्रकाशन तिथि 2020-06-23
रेटिंग 3.00/5 कुल 4 रेटिंग्स
डेवलपर http://jacques-applebaum.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://jacques-applebaum.com
सहायता पृष्ठ URL https://jacques-applebaum.com/ja_art/chrome_ext
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Full Screen Viewer for Instagram",
    "version": "1.5",
    "description": "Creates a picture frame from Instagram Images v1.5",
    "icons": {
        "16": "icon.png",
        "64": "woman_hat_64_icon.png",
        "128": "woman_hat_128px_icon.png"
    },
    "incognito": "spanning",
    "web_accessible_resources": [
        "d2.wasm"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "d2.js",
                "content.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}