全部应用

Bookmark Dupes
4.9
-----------------------
显示/移除重复的书签或空文件夹 # bookmarkdupes (C) Martin Väth <martin@mvath.de>, <mvath.develop@gmail.com> This project is under the GNU Public License 2.0. A WebExtension which can display/remove duplicate bookmarks, empty folders, or descriptions After installing bookmarkdupes, the usage is rather simple: To open bookmarkdupes, click the extension symbol (duplicate stars) or use the link in the options page of the extension. **Do not enable “Expert Mode”** (unless you fully understand the consequences, see separate section). Then select what you want to display: 1. Bookmark duplicates 2. Empty folders 3. Non-duplicate bookmarks After this, you will be offered the list of bookmarks with checkboxes; in case 1 the numbers indicate the order in which matching bookmarks were added according to the internally stored date. There are also buttons to select/unselect convenient sets of checkboxes. Finally, there are buttons to remove the selected bookmarks. **Be aware that removing bookmarks is irreversible!** *It is recommended to make backups of your bookmarks first!* Currently, there is no working version of the extension available for android (see section **Known Bugs**). ## Important When you reorganized/added/removed bookmarks, make sure to update the displayed list (by pressing the corresponding button) before removing bookmarks! ## Permissions The extension requires the following permissions for these reasons: 1. “bookmarks” to read/modify bookmarks 2. “storage” to store/restore the customized rules in expert mode. Unfortunately, “storage” is not one of the optional permissions which might be required only if that feature is actually requested by the user. ## Expert Mode When selecting the checkbox for expert mode, details can be configured to ignore certain bookmarks when calculating the list or under which cases bookmarks are considered to be dupes of each other. In non-expert mode, two bookmarks are considered to be duplicates of each other if their URL coincides. In expert mode there are custom rules by which the URL which is actually used for comparison is to be modified. The details are as follows. For every bookmark the rules are applied in the given order. There are 2 types of rules: Filter rules and URL modification rules (there are also disabled rules which are only listed but have no effect). For both types of rules 4 regular expressions can be specified which are used to determine if the rule applies: If the corresponding regular expression is nonempty, the corresponding condition must be satisfied or the rule will not apply. (In the case of filter rules, at least one of these 4 regular expressions must be nonempty or that filter rules will not apply either.) The 4 regular expressions refer to the bookmark's name or url, respectively, and the regular expressions must either match or not match, respectively. - The term “regular expression” refers to a javascript type regular expression. - The bookmark's name refers to the full bookmark path as it appears in the browser with folder names separated by the null character. For instance, if you have in “Bookmark Menu” a folder “Collection” which contains your bookmark ""Example"", the bookmark's name becomes `Bookmark Menu\0Collection\0Example` (where `\0` denotes the null character which can be matched by the regular expression with `\0` or `\x00`). - The bookmark's URL refers to the bookmark URL after possible modifications by previous modifier rules. If a filter rule applies, the corresponding bookmark is ignored, i.e., it will not be considered as a duplicate and will neither appear in the list of empty folders nor of all bookmarks. If a URL modification rule applies, a text replacement will occur: All parts matching a specified regular expression are substituted by a replacement text (which might be empty). The rules for this correspond to the javascript String.prototype.replace function with the global modifier. In particular, the replacement text can contain symbols like `$&` or `$1` to refer to the whole matched text or to the match of the first brace in the regular expression, respectively. The following 5 replacement texts have a special meaning which goes beyond the standard javascript replacement rules. Note that this special meaning is only active if this is the full replacement text. In other words, to get the special meaning, the replacement text must not contain anything else than these 4-6 characters. (This does not really restrict the functionality, because one can combine several rules to work around that limitation if necessary.) 1. `\L$&` is the match in lower case. 2. `\U$&` is the match in upper case. 3. `$URL` is the url before any other rules have been applied. 4. `$NAME` is the bookmark's full name/path with folders separated by the null character, e.g. “Bookmark Menu\0Collection\0Example” 5. `$TITLE` is the bookmark's title without the path; for instance, for the bookmark name “Bookmark Menu | Collection | Example” it is “Example”. ## Examples for special tasks which can be done in Expert Mode ### Task 1. Consider two bookmarks as duplicate if their URL differs only in `https:` vs. `http:` at the beginnning. 2. Consider two bookmarks as duplicate if their URL matches up to the first `?` symbol, i.e. only their additional information differs. 3. Do not consider any bookmark from any folder named ``Mr. Dupe`` as a duplicate. 4. Add all bookmarks to the list of duplicates, whether duplicate or not. 5. Add all bookmarks from the folder `Bookmark Menu | Remove` to the list of duplicates (no matter whether they actually are duplicates). 6. Consider two bookmarks as duplicate if they have the same name (instead of the same URL). 7. Consider two bookmarks as duplicate if they reside in the same folder. ### How to do the above tasks in Expert Mode 1. Use the replacement rule: “Replace URL matches” `^http:` “by” `^https:` Explanation: By replacing everywhere the URL beginnning with `http:` by `https:`, it does not matter whether the actual URL started with `http:` or `https:`. Of course, we could have exchanged the roles of `http` and `https` in our rule. 2. Use the replacement rule: “Replace URL matches” `\?.*` “by” ` ` (empty string) Explanation: Simply omit the ? symbol and all other symbols following it in all URLs. 3. Use the filter rule: “Name matches” `\0Mr\. Dupe\0` or `\0Mr[.] Dupe\0` Explanation: If a bookmark is in a folder named “Mr. Dupe”, its full name (path) will contain the text “\0Mr. Dupe\0”; so match that text. Since the “.” symbol has a special meaning for regular expressions, we have to quote it. This can be done by either `\.` or by looking for a character class `[…]` which contains only the single symbol `.`. 4. Use the replacement rule: “Replace URL matches” `.+` “by” `constant` Explanation: Pretend that every bookmark has the URL `constant` by replacing all characters (`.+`) of the original URL by that text. 5. Use the replacement rule: “Name Matches” `^Bookmark Menu\0Remove\0` “Replace URL matches” `.+` “by” `constant` As in 4, but only for bookmarks whose full name starts with the matching path. This works only if the folder contains at least 2 bookmarks (because otherwise `constant` is not a duplicate URL). Of course, one might use an actually duplicate URL instead of `constant` to work around this limitation. 6. Use the replacement rule: “Replace URL matches” `.+` “by” `$TITLE` Explanation: Replace all bookmark URLs by the corresponding bookmark title when looking for dupes. 7. Use the replacement rule “Replace URL matches” `.+` “by” `$NAME` followed by a further replacement rule “Replace URL matches” `[^\0]*$` “by” ` ` (empty string) Explanation: First replace the URL by its full name path, and then omit the last component of this path by cutting of the longest sequence of non-`\0`-symbols at the end. ## Contributors (in alphabetical order) - Henaro aka Ironwool (Russian and Ukrainian translation; redesign icon in svg; provide favicon) - Juan Salvador Aleixandre Talens (Spanish translation) - YFdyh000 (Simplified Chinese translation)"
Web Color Picker - 在线颜色采集器
4.1
-----------------------
从网页中抓取颜色。 颜色选择器,颜色历史。 HEX、RGBA 中的实时智能颜色选择器工具。 免费的吸管颜色选择 面向设计师的 Web 拾色器革命性工具。 现在,您可以使用我们的新扩展轻松地从任何网站中挑选任何一个。吸管工具将从您需要的任何网页获取调色板。对于网页开发人员或网页设计师来说,这是一个非常有用的工具。此扩展程序使用起来非常简单,并且具有简单且用户友好的界面。我们为您提供了惊人且有用的吸管工具,因此您可以从任何网页获取 RGB 颜色。在浏览网页时从网页中提取调色板。提供三种颜色格式:RGB、CSS 和 HSL。 它的使用也非常简单 - 只需点击右上角的扩展图标和星标即可。 - 识别 RGB HEX CMYK - 节省托盘 - 将它们编辑成漂亮的调色板组合是一项快速而简单的工作。 拾色器的特点是: * 不同格式:HEX、RGB、HSV * 检测页面上最常用的颜色 *最近选择的颜色的颜色列表 * 红-绿-蓝 (RGB) 轮调整选择 网络拾色器是一种简单快捷的工具,用于识别、保存和编辑漂亮的颜色组合。它提供不同的颜色格式,包括 HEX、RGB 和 HSV,并且可以检测页面上最常用的颜色。颜色历史功能允许您查看最近选择的颜色列表。使用 RGB 色轮,您可以根据自己的喜好调整所选颜色。要使用 Web 颜色选择器,您只需单击扩展程序的按钮,选择“选择颜色”选项,在页面上选择一个具有您需要的颜色的区域,然后将颜色表示复制到剪贴板。 除了 Web 颜色选择器之外,还有高级吸管、颜色选择器、渐变生成器和其他色彩丰富的好东西。此工具允许您从浏览器中的任何位置获取颜色读数、调整颜色并将其粘贴到另一个程序中。 Eyedropper 功能允许您获取页面上任何像素的颜色,而 Advanced Color Picker 类似于 Photoshop 的。您还可以使用终极 CSS 渐变生成器为您的设计创建渐变。使用网页颜色分析器,您可以获得任何站点的调色板,调色板查看器有七个预装的调色板。 颜色选择器为您提供精确的颜色选择,并为您提供 HEX、RGB 或 HSB 的颜色编号。此工具对于需要为其网站选择颜色的网页设计师特别有用。使用颜色选择器,您可以使用您想要用于站点的颜色,从应用程序中选择颜色数量,并在 CSS 文件中使用它。颜色选择器使网页设计师的工作更轻松,无需多次更改网站颜色即可获得所需的结果。 拾色器是一款 100% 免费的应用程序,您可以随心所欲地使用它。这是一个令人愉快的工具,可以使颜色选择变得有趣和简单。 拾色器是谷歌浏览器的一个扩展,它提供了一系列工具和功能,用于在网页设计和其他应用程序中处理颜色。凭借其易于使用的界面和全面的功能集,它是任何在 Web 上处理颜色的人的必备工具。 颜色选择器的主要功能之一是它能够检测和显示给定网页上使用的颜色。使用扩展的工具栏按钮,用户可以激活“选择颜色”功能,允许他们选择页面上的任何区域并检索各种格式的颜色代码,包括 HEX、RGB 和 HSV。这对于需要匹配各种设计元素的颜色以创建具有凝聚力的外观和感觉的网页设计师特别有用。 Color Picker 扩展还包括一个高级吸管工具,它允许用户获取页面上任何像素的颜色。此功能对于需要匹配肉眼不易辨别的颜色的设计师特别有用。该扩展还包括一个类似于 Photoshop 中的高级颜色选择器,可以更轻松地精确选择和调整颜色。 对于那些需要创建 CSS 渐变的人,color picker 提供了一个 Ultimate CSS Gradient Generator,它允许用户轻松创建和自定义渐变。此外,该扩展包括一个网页颜色分析器,它分析给定的网页并生成可用于通知设计决策的调色板。 该扩展还具有一个带有七个预装调色板的调色板查看器,可以轻松地在配色方案之间切换。而且,对于那些需要使用多种颜色的人来说,该扩展包括一个颜色历史记录功能,可以跟踪最近选择的颜色以便于访问。 除了这些功能之外,颜色选择器还包括各种其他工具和功能,包括显示标签名称、类、id、大小等元素信息的能力。该扩展还包括用于快速访问其各种功能的键盘快捷键,并且能够从动态悬停元素中选取颜色。 Color Picker 还包括一个网页区域放大/缩放放大镜功能,可以帮助用户在 Web 开发调整期间看到像素完美的对齐精度。可以从选项中禁用此功能,默认情况下禁用。 当使用颜色选择器从网站中提取颜色时,该工具通常通过“抓取”或选择您要捕获的特定颜色来工作。此过程涉及使用鼠标或触摸板单击网站上包含您要提取的颜色的区域。 单击颜色后,颜色选择器工具将分析该特定区域中的像素数据并检索与其关联的 RGB 或十六进制颜色代码。然后,此信息以代码或色样的形式显示给用户,可用于各种设计应用程序。 虽然颜色选择器主要是为网页设计师设计的,但对于任何需要在日常生活中使用颜色的人来说,它都是一个有用的工具。凭借其全面的功能集和易于使用的界面,它是任何在工作中重视色彩准确度和精度的人的必备扩展。最重要的是,它是一个完全免费的应用程序,任何需要它的人都可以使用它。
Sans Forgetica: Study Mode by RMIT University
2.7
-----------------------
Sans Forgetica is a typeface scientifically designed to help you remember your study materials and other written information. ★ How to use Sans Forgetica: Study Mode is easy to use. Simply activate the Chrome extension in your browser, then highlight any on screen text that you wish to retain in memory. Sans Forgetica is best used as a highlighting tool for particular phrases, rather than whole texts. ★ What’s wrong with my regular font? From its invention, the story of typeface design has been one of technological limitation. Today, however, typography has been unleashed. Digital formats allow us to think and craft beyond the physical restrictions of materials. Never before has it been so easy to craft letterforms that bend to the will of our imaginations. But research has shown that the clean, smooth typefaces typically used in contemporary computer user interfaces may be less effective in presenting information to the reader. When a piece of information is too easily and cleanly perceived, it fails to engage our brains in the kind of deeper cognitive processing necessary for effective retention and recall. ★ The science behind Sans Forgetica Sans Forgetica was designed under the scientific guidance of Dr Janneke Blijlevens and Dr Jo Laban from RMIT’s Behavioural Business Lab. The font works using principles of psychology, fused with type design, to create a condition known as ‘desirable difficulty’ – obstructions to the learning process that aid the retention and recall of information. ★ The face behind the type The design of Sans Forgetica was led by RMIT Lecturer of Typography and renowned typographer Stephen Banham. Working in collaboration with RMIT’s Behavioural Business Lab, Stephen developed multiple typefaces at varying degrees of ‘distinctiveness’. The typefaces were then put to the test through a series of memory and fluency tests undertaken by the Behavioural Business Lab. The typeface which showed the best effect on memory retention became ‘ Sans Forgetica’. ★ What next? To find out more about some of the exciting, collaborative, multidisciplinary projects happening at RMIT University, visit http://www.rmit.edu.au"
MerciApp — Correcteur d’orthographe et assistant de rédaction
4.6
-----------------------
Le correcteur d’orthographe MerciApp fonctionne avec tous vos outils en ligne préférés grâce à l’extension navigateur Chrome Le correcteur d’orthographe MerciApp fonctionne avec tous vos outils en ligne préférés grâce à l’extension navigateur Chrome. L’outil permet d’identifier, de comprendre et de corriger en quelques clics les fautes d’orthographe, de grammaire, de conjugaison et de style, directement depuis votre navigateur Google Chrome. Nouvelle fonctionnalité : MerciApp propose la reformulation de texte directement sur les outils et plateformes utilisés. ● Écrivez sans faute MerciApp propose différents niveaux de correction : ▪ Correction d’orthographe : grâce à un dictionnaire unique, MerciApp est capable de corriger la plupart des fautes d’orthographe sur les mots en langue française. L’extension est également capable d’identifier et de suggérer des corrections pour les erreurs d’homophonie (par exemple : j’est mangé au lieu de j’ai mangé) ▪ Correction grammaticale : MerciApp détecte les erreurs d’accord et de conjugaison, même les plus avancées comme les confusions entre infinitif et participe passé, les pluriels abusifs, les constructions fautives, etc. ▪ Correction de style : l’extension vous permet également d’identifier les phrases trop longues, les oublis de ponctuation ou encore le mauvais usage d’abréviations. ▪ Correction contextuelle : enfin, grâce à un moteur de correction complet, MerciApp détecte les erreurs contextuelles telles que les problèmes de date ou l’oubli d’une lettre majuscule pour certains mots. Dans la plupart des cas, MerciApp vous suggère une correction automatique qui va au-delà des correcteurs tels que Bon Patron ou Reverso, faisant de MerciApp l’antidote parfait aux fautes d’orthographe. ● Corrigez sur tous les sites Le correcteur d’orthographe et de grammaire MerciApp fonctionne sur quasiment tous les sites et applications web. L’analyse et la correction vous sont proposées directement sur le site ou service sur lequel vous êtes en train d’écrire pour un confort d’écriture optimal et un gain de temps maximal. ● Rédigez confortablement MerciApp détecte les langues étrangères pour stopper la correction quand vous n’écrivez pas en Français. Son interface ergonomique vous permet de consulter les suggestions de correction quand vous le souhaitez, sans avoir à interrompre l’écriture. ● Bénéficiez d’une puissance inégalée Le correcteur MerciApp s’appuie sur 30 ans de recherche en linguistique et en algorithmie en collaboration avec des professionnels reconnus de l’écriture. L’outil s’appuie sur un dictionnaire incluant plus de 500 000 déclinaisons de mots. Déjà adopté par plus de 10 000 utilisateurs, il est considéré comme l’un des meilleurs correcteurs d’orthographe. MerciApp est une alternative en français à Grammarly. En installant l'extension, vous acceptez les conditions générales d'utilisation et de services (https://www.merci-app.com/infos-legales/cgu) et reconnaissez avoir lu la politique de cookies mise en place par MerciApp (https://www.merci-app.com/infos-legales/cookies)."