Open Tabs
Show open tabs
Vad är Open Tabs?
Open Tabs är en Chrome-tillägg utvecklad av Syl, och dess huvudfunktion är "Show open tabs".
Tilläggsskärmbilder
Ladda ner Open Tabs-förlängningens CRX-fil
Ladda ner Open Tabs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension is open-source! Contribute on https://github.com/sylouuu/chrome-open-tabs Show open tabs: - Go to tab - Close tab - Reload tab - Duplicate tab - Pin/unpin tab - Hide tab The open tabs are updated in real time. Changelog: https://github.com/sylouuu/chrome-open-tabs/releases
Grundläggande Information om Tillägg
Namn | Open Tabs |
ID | cepfpldhbcfaklnnldhoaahgliijehap |
Officiell webbadress | https://chromewebstore.google.com/detail/open-tabs/cepfpldhbcfaklnnldhoaahgliijehap |
Beskrivning | Show open tabs |
Filstorlek | 34.91 KB |
Antal Installationer | 1,226 |
Aktuell Version | 0.3.2 |
Senast Uppdaterad | 2017-06-22 |
Publiceringsdatum | 2017-06-22 |
Betyg | 3.75/5 Totalt 12 Betyg |
Utvecklare | Syl |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/sylouuu/chrome-open-tabs |
Hjälpsida URL | https://github.com/sylouuu/chrome-open-tabs/issues |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Open Tabs", "version": "0.3.2", "description": "Show open tabs", "homepage_url": "https:\/\/github.com\/sylouuu\/chrome-open-tabs", "icons": { "16": "img\/icon_16.png", "32": "img\/icon_32.png", "48": "img\/icon_48.png", "64": "img\/icon_64.png", "128": "img\/icon_128.png" }, "browser_action": { "default_icon": "img\/icon_48.png" }, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com https:\/\/www.google-analytics.com; object-src 'self'", "options_page": "html\/options.html", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "web_accessible_resources": [ "img\/*.png" ], "permissions": [ "tabs", "storage" ] } |