All Projects → tuomassalo → tab-numbering

tuomassalo / tab-numbering

Licence: MIT license
Browser extension for Chrome and Firefox: add numbering to tab titles

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to tab-numbering

Turn-Off-the-Lights-Firefox-extension-WebExtensions
Firefox extension (WebExtensions)
Stars: ✭ 19 (-13.64%)
Mutual labels:  accessibility, firefox-webextension
a11y-accordion-tabs
A script for an accessible accordion tabs component
Stars: ✭ 50 (+127.27%)
Mutual labels:  accessibility
wayfindr-demo-ios
The wayfindr demo app for iOS
Stars: ✭ 27 (+22.73%)
Mutual labels:  accessibility
BuyXMWear2Plugin
最近在小米官网上抢小米手环2一直抢不到,深痛小米恶心的饥饿营销,但是喜欢的宝贝还是要买滴[嘻嘻嘻],咋办呢?。刚好昨天阿里内部抢月饼的事件闹到头条,何不像他们学习写个插件抢手环2呢,何乐而不为!
Stars: ✭ 16 (-27.27%)
Mutual labels:  accessibility
ckeditor4-plugin-a11ychecker
Accessibility checker for CKEditor 4
Stars: ✭ 17 (-22.73%)
Mutual labels:  accessibility
a11yjson
A11yJSON: A standard to describe the accessibility of the physical world.
Stars: ✭ 58 (+163.64%)
Mutual labels:  accessibility
evaluatory
Web page evaluation with a focus on accessibility
Stars: ✭ 57 (+159.09%)
Mutual labels:  accessibility
Accessibility-Statement
A template & resources for creating good accessibility templates for your website & apps.
Stars: ✭ 35 (+59.09%)
Mutual labels:  accessibility
The-HTML-and-CSS-Workshop
A New, Interactive Approach to Learning HTML and CSS
Stars: ✭ 65 (+195.45%)
Mutual labels:  accessibility
sublime-wai-aria
WAI-ARIA Roles, States and Properties auto-completion for Sublime Text
Stars: ✭ 21 (-4.55%)
Mutual labels:  accessibility
accessibility-manual
The DWP Accessibility Manual is a community led effort to put guidance and best practices all in one place for anybody looking to meet the Public Sector Bodies Accessibility Regulations 2018.
Stars: ✭ 34 (+54.55%)
Mutual labels:  accessibility
i7n-pdfhtml
pdfHTML is an iText 7 add-on for C# (.NET) that allows you to easily convert HTML and CSS into standards compliant PDFs that are accessible, searchable and usable for indexing.
Stars: ✭ 111 (+404.55%)
Mutual labels:  accessibility
Lock
Screen locker for Android
Stars: ✭ 52 (+136.36%)
Mutual labels:  accessibility
web-maps-wcag-evaluation
Manual accessibility evaluation of popular web map tools.
Stars: ✭ 28 (+27.27%)
Mutual labels:  accessibility
HTML-Lint
A code quality bookmarklet and command-line tool
Stars: ✭ 20 (-9.09%)
Mutual labels:  accessibility
stucco
An experimental adaptive UI toolkit.
Stars: ✭ 31 (+40.91%)
Mutual labels:  accessibility
vuestic-ui
Free and Open Source UI Library for Vue 3 🤘
Stars: ✭ 1,501 (+6722.73%)
Mutual labels:  accessibility
a11y-guidelines
アメーバアクセシビリティガイドライン
Stars: ✭ 61 (+177.27%)
Mutual labels:  accessibility
jquery-accessible-dialog-tooltip-aria
jQuery simple and accessible dialog tooltip window, using ARIA
Stars: ✭ 17 (-22.73%)
Mutual labels:  accessibility
GazeTheWeb
Explore the Web with your eyes! Part of the MAMEM project.
Stars: ✭ 30 (+36.36%)
Mutual labels:  accessibility

NOTE 2021-06-11: This extension is currently unmaintained. I abandoned this when I ended up using a Firefox userChrome.css addition (updated for Firefox 89):

tabs {
  counter-reset: tab-counter;
}

tab:nth-child(1) .tab-content::before,
tab:nth-child(2) .tab-content::before,
tab:nth-child(3) .tab-content::before,
tab:nth-child(4) .tab-content::before,
tab:nth-child(5) .tab-content::before,
tab:nth-child(6) .tab-content::before,
tab:nth-child(7) .tab-content::before,
tab:nth-child(8) .tab-content::before {
  counter-increment: tab-counter;
  content: counter(tab-counter) "";

  position: absolute;
  left: 24px;
  top: 7px;
  padding: 0px 4px;
  border-radius: 7px;

  opacity: .7;
  background: #ff0c;

  font-weight: bold;
  font-size: 80%;
}

/* show vertical lines between tabs */
tab:not(:first-child) {
  border-left: 1px solid #0004 !important;
}

tab-numbering

A browser extension for add numbering to tab titles. Uses WebExtensions API, and thus works on at least Chrome and Firefox.

Chrome: Screenshot

Firefox: Screenshot

This extension writes the tab number to the first eight tabs, the ones accessible with ctrl/cmd + number.

How to install

  • For Firefox: install from Mozilla Add-Ons.
  • For Chrome:
    1. Clone this repository to your machine
    2. Open chrome://extensions/
    3. Check Developer mode
    4. Click Load unpacked extension...
    5. Select the directory you cloned the repository into.

Known issues

  • does not add numbers to pinned tabs, internal error pages, "new tab" pages or other special tabs

  • does not keep in sync when dragging tabs to/from another window

  • will mess up with titles already starting with the characters ¹...

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].