FavTabs
Opens a set of your favorite tabs.
Wat is FavTabs?
FavTabs is een Chrome-extensie ontwikkeld door Ian Hyatt, en de belangrijkste functie is "Opens a set of your favorite tabs.".
Extensie Screenshots
Download het CRX-bestand van de extensie FavTabs
Download FavTabs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extensions provides a button in Chrome that opens a set of default (favorite) tabs. You can specify the URLs for the tabs to open in the extension options as well as which tabs (if any) you want pinned.
Basisinformatie over de Extensie
Naam | FavTabs |
ID | epmimoeohdhcbafcelmkkbabkkhojnee |
Officiële URL | https://chromewebstore.google.com/detail/favtabs/epmimoeohdhcbafcelmkkbabkkhojnee |
Beschrijving | Opens a set of your favorite tabs. |
Bestandsgrootte | 17.64 KB |
Aantal Installaties | 41 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2020-10-27 |
Publicatiedatum | 2017-01-16 |
Ontwikkelaar | Ian Hyatt |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "FavTabs", "description": "Opens a set of your favorite tabs.", "version": "1.0", "icons": { "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "activeTab", "storage" ], "browser_action": { "default_title": "FavTabs" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "options_ui": { "page": "options.html", "chrome_style": true } } |