Open in Sidebar
Drop any link to the sidebar for dual-pane access
Cos'è Open in Sidebar?
Open in Sidebar è un'estensione di Chrome sviluppata da chandler.stimson, e la sua funzione principale è "Drop any link to the sidebar for dual-pane access".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Open in Sidebar
Scarica i file di estensione Open in Sidebar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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)
Informazioni di Base sull'Estensione
Nome | Open in Sidebar |
ID | ekcledpomlimppndbkaniiimmajapfna |
URL Ufficiale | https://chromewebstore.google.com/detail/open-in-sidebar/ekcledpomlimppndbkaniiimmajapfna |
Descrizione | Drop any link to the sidebar for dual-pane access |
Dimensione del File | 47.79 KB |
Conteggio Installazioni | 681 |
Versione Corrente | 0.1.4 |
Ultimo Aggiornamento | 2024-02-11 |
Data di Pubblicazione | 2023-06-14 |
Valutazione | 4.67/5 Totale 3 Valutazioni |
Sviluppatore | chandler.stimson |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://webextension.org/listing/open-in-sidebar.html |
URL della Pagina di Aiuto | https://webextension.org/listing/open-in-sidebar.html |
Lingue Supportate | 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 } } |