Open Tabs
Show open tabs
什麼是Open Tabs?
Open Tabs是由Syl開發的Chrome擴展程式,該擴展的主要功能是“Show open tabs”。
擴展截圖
下載Open Tabs擴展crx文件
下載Open Tabs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Open Tabs |
ID | cepfpldhbcfaklnnldhoaahgliijehap |
官方網址 | https://chromewebstore.google.com/detail/open-tabs/cepfpldhbcfaklnnldhoaahgliijehap |
簡介 | Show open tabs |
檔案大小 | 34.91 KB |
安裝次數 | 1,226 |
目前版本 | 0.3.2 |
更新時間 | 2017-06-22 |
上架時間 | 2017-06-22 |
評分 | 3.75/5 共 12 次評分 |
開發者 | Syl |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/sylouuu/chrome-open-tabs |
說明頁面URL | https://github.com/sylouuu/chrome-open-tabs/issues |
支援的語言 | 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" ] } |