Google search tab fixer
Allows users to cycle through google search results by pressing the tab key.
Was ist Google search tab fixer?
Google search tab fixer ist eine Chrome-Erweiterung, die von Sam entwickelt wurde, und ihr Hauptmerkmal ist "Allows users to cycle through google search results by pressing the tab key.".
Erweiterungsscreenshots
Google search tab fixer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Google search tab fixer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This small extension brings familiar tab functionality back to the google search results page. Press tab once to go to the top result, or multiple times to cycle through the search results. Press enter on any result to view that result.
Grundlegende Informationen zur Erweiterung
Name | Google search tab fixer |
ID | hggbelpbiemgfkdhofjeajpgnoieogmg |
Offizielle URL | https://chromewebstore.google.com/detail/google-search-tab-fixer/hggbelpbiemgfkdhofjeajpgnoieogmg |
Beschreibung | Allows users to cycle through google search results by pressing the tab key. |
Dateigröße | 20.04 KB |
Installationsanzahl | 17 |
Aktuelle Version | 0.0.4 |
Letztes Update | 2016-07-15 |
Veröffentlichungsdatum | 2016-07-15 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Sam |
Zahlungsart | free |
Erweiterungswebsite | http://www.101drum.com |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google search tab fixer", "version": "0.0.4", "manifest_version": 2, "description": "Allows users to cycle through google search results by pressing the tab key.", "homepage_url": "http:\/\/101drum.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "page_action": { "default_icon": "icons\/icon19.png", "default_title": "page action demo", "default_popup": "src\/page_action\/page_action.html" }, "permissions": [ "*:\/\/*\/search*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/search*" ], "run_at": "document_start", "js": [ "src\/inject\/inject.js" ] } ] } |