Open in Sidebar

Drop any link to the sidebar for dual-pane access

Open in Sidebar क्या है?

Open in Sidebar chandler.stimson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Drop any link to the sidebar for dual-pane access"।

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

screenshot
screenshot

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

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

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

                        The "Open in Sidebar" extension revolutionizes browsing by allowing you to load any webpage in a convenient sidebar view. Access web content while reading without switching tabs with a click or keyboard shortcut. Drag and drop links or use the built-in address bar for seamless navigation. Enhance productivity by opening online tools like text editors or dictionaries in the sidebar. Reset the view with a single click or load new pages by pasting URLs. Note that some pages with CSP headers may have limitations, but future updates aim to address these.

Features:
Load any webpage in a convenient sidebar view
Activate the sidebar with a click or assigned keyboard shortcut
Drag and drop links or use the built-in address bar for seamless navigation
Access web content while reading without switching tabs
Enhance productivity by opening online tools like text editors or dictionaries in the sidebar
Intuitive interface with an address bar for easy URL tracking
Reset the view with a single click
Load new pages by pasting URLs into the address bar
Search for dropped text with your preferred search engine (e.g. Google, Bing, or DuckDuckGo)                    

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

नाम Open in Sidebar Open in Sidebar
ID ekcledpomlimppndbkaniiimmajapfna
आधिकारिक URL https://chromewebstore.google.com/detail/open-in-sidebar/ekcledpomlimppndbkaniiimmajapfna
विवरण Drop any link to the sidebar for dual-pane access
फ़ाइल का आकार 47.79 KB
स्थापना संख्या 681
वर्तमान संस्करण 0.1.4
अंतिम अपडेट 2024-02-11
प्रकाशन तिथि 2023-06-14
रेटिंग 4.67/5 कुल 3 रेटिंग्स
डेवलपर chandler.stimson
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://webextension.org/listing/open-in-sidebar.html
सहायता पृष्ठ URL https://webextension.org/listing/open-in-sidebar.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.1.4",
    "name": "Open in Sidebar",
    "description": "Drop any link to the sidebar for dual-pane access",
    "permissions": [
        "storage",
        "sidePanel",
        "contextMenus",
        "declarativeNetRequestWithHostAccess"
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/open-in-sidebar.html",
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "side_panel": {
        "default_path": "\/data\/open\/index.html"
    },
    "action": [],
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "match_about_blank": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                "\/data\/inject\/user-script.js"
            ],
            "world": "MAIN"
        },
        {
            "match_about_blank": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                "\/data\/inject\/detect.js"
            ]
        }
    ],
    "options_ui": {
        "page": "\/data\/options\/index.html",
        "open_in_tab": true
    }
}