SameTab - keep only one copy of the tab open
SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…
什麼是SameTab - keep only one copy of the tab open?
SameTab - keep only one copy of the tab open是由valentin.alekseev開發的Chrome擴展程式,該擴展的主要功能是“SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…”。
下載SameTab - keep only one copy of the tab open擴展crx文件
下載SameTab - keep only one copy of the tab open擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it will close the duplicate freeing up some memory and tab space.
擴展基本資訊
名稱 | SameTab - keep only one copy of the tab open |
ID | egndhnnhgedkbnkdfjpakgpclhbjcjfb |
官方網址 | https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb |
簡介 | SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it… |
檔案大小 | 8.9 KB |
安裝次數 | 12 |
目前版本 | 1.1 |
更新時間 | 2016-02-16 |
上架時間 | 2016-02-16 |
評分 | 3.50/5 共 2 次評分 |
開發者 | valentin.alekseev |
付費類型 | free |
說明頁面URL | https://github.com/valentinalexeev/chrome-sametab |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SameTab - keep only one copy of the tab open", "description": "", "version": "1.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "index.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "tabs", "activeTab", "notifications", "storage" ] } |