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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" ] } |