No Duplicates
This extension will allow you to close duplicates of the same page
Τι είναι το No Duplicates;
Το No Duplicates είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Joubin Jabbari, και η κύρια λειτουργία του είναι "This extension will allow you to close duplicates of the same page".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης No Duplicates
Λήψη αρχείων επέκτασης No Duplicates σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" } |