No Duplicates
This extension will allow you to close duplicates of the same page
No Duplicates란 무엇입니까?
No Duplicates은(는) Joubin Jabbari에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will allow you to close duplicates of the same page"입니다.
확장 프로그램 스크린샷
No Duplicates 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
No Duplicates helps you manage your tabs so you don't end up with dozens of duplicate tabs. No Duplicates will warn you when you open "Yet another tab" of a page you already have open. You can choose to close the others and keep this one open; close all and go to one; ... or just ignore it and have duplicated tabs :) Source: https://github.com/joubin/No-Duplicates New: - Added a means to pause the extension - Shortened the notification questions Bug Fixes - Removed a whitelisting bug where the url was not being matched on subdomains
확장 프로그램 기본 정보
이름 | |
ID | fpdinogpedcccjmbnkbgbnmaafobihgb |
공식 URL | https://chrome.google.com/webstore/detail/no-duplicates/fpdinogpedcccjmbnkbgbnmaafobihgb |
설명 | This extension will allow you to close duplicates of the same page |
파일 크기 | 15.32 KB |
설치 횟수 | 328 |
현재 버전 | 0.35 |
최근 업데이트 | 2018-12-10 |
출시 날짜 | 2018-12-10 |
평점 | 4.20/5 총 10 개의 평점 |
개발자 | Joubin Jabbari |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "background": { "scripts": [ "popup.js" ] }, "browser_action": { "default_icon": "logo.png", "default_popup": "options.html" }, "content_security_policy": " default-src 'self' ; style-src https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/4.0.0-alpha.6\/css\/bootstrap.min.css; script-src 'self' https:\/\/code.jquery.com\/jquery-3.1.1.slim.min.js https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/4.0.0-alpha.6\/js\/bootstrap.min.js https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/tether\/1.4.0\/js\/tether.min.js", "description": "This extension will allow you to close duplicates of the same page", "icons": { "128": "logo.png", "16": "logo.png", "48": "logo.png" }, "manifest_version": 2, "name": "No Duplicates", "options_page": "options.html", "permissions": [ "activeTab", "tabs", "notifications", "storage" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.35" } |