Up Button
Like a back button, but for places you pause vertically on a page!
Was ist Up Button?
Up Button ist eine Chrome-Erweiterung, die von Will entwickelt wurde, und ihr Hauptmerkmal ist "Like a back button, but for places you pause vertically on a page!".
Up Button-Erweiterungs-CRX-Datei herunterladen
Laden Sie Up Button-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 plugin will mark when you pause on a section of a page, allowing you to navigate vertically.
I wrote this because I spend so much time reading documentation, and need to reference several places in the same doc - so it makes sense to be able to jump to places that you were reading previously!
Works great for:
* research
* documentation
* long pages, lost places
Want to contribute / report bug / request feature? Project is on GitHub at: https://github.com/fowlerwill/UpButton Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hnigeamcjfgobhbiommihjdnbdcldoph |
| Offizielle URL | https://chrome.google.com/webstore/detail/up-button/hnigeamcjfgobhbiommihjdnbdcldoph |
| Beschreibung | Like a back button, but for places you pause vertically on a page! |
| Dateigröße | 7.95 KB |
| Installationsanzahl | 24 |
| Aktuelle Version | 0.0.15 |
| Letztes Update | 2016-01-17 |
| Veröffentlichungsdatum | 2016-01-17 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | Will |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "0.0.15",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts\/background.js"
]
},
"permissions": [
"activeTab",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"scripts\/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"browser_action": {
"default_icon": {
"19": "images\/icon-19.png",
"38": "images\/icon-38.png"
},
"default_title": "updownbuttons"
}
} | |