Quicken
Surf faster than your mouse can handle!
Cos'è Quicken?
Quicken è un'estensione di Chrome sviluppata da Yigal Korman, e la sua funzione principale è "Surf faster than your mouse can handle!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Quicken
Scarica i file di estensione Quicken in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Use the keyboard to browse the web - FORWARD!
When our icon appears in the omnibar - you can click the icon or use Ctrl+Right to go to the next page.
Note that you can also use Ctrl+Left to go back.
This feature works for sites where there's a next page to go to, like multi-page articles, forums and search results.
New! - Adding sites manually
Add a next button/link manually by right clicking on it and selecting "Set as Quicken Next" in the context menu.
Supported sites:
* Google, Yahoo and Bing search engines.
* Youtube search and playlists.
* Ars Technica, Reuters and other news sites.
* Blogspot based blogs.
* PHP-BB base forums.
* Wordpress based blogs.
* Tumblr sites.
* and many more ... Informazioni di Base sull'Estensione
| Nome | |
| ID | bcnfaiaknkbbcmpeedkjjjcdmjlgbafo |
| URL Ufficiale | https://chromewebstore.google.com/detail/quicken/bcnfaiaknkbbcmpeedkjjjcdmjlgbafo |
| Descrizione | Surf faster than your mouse can handle! |
| Dimensione del File | 19.04 KB |
| Conteggio Installazioni | 615 |
| Versione Corrente | 2.4 |
| Ultimo Aggiornamento | 2014-05-21 |
| Data di Pubblicazione | 2014-05-21 |
| Valutazione | 3.43/5 Totale 7 Valutazioni |
| Sviluppatore | Yigal Korman |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://ykorman.github.io/nextpage-chrome/ |
| URL della Pagina di Aiuto | https://github.com/ykorman/nextpage-chrome/issues |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Quicken",
"description": "Surf faster than your mouse can handle!",
"version": "2.4",
"short_name": "Accelerate Keyboard Browsing",
"permissions": [
"tabs",
"*:\/\/*\/*",
"contextMenus",
"storage"
],
"icons": {
"128": "icon128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_title": "Open Next Page",
"default_icon": {
"19": "icon19.png",
"38": "icon38.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"humane.min.js",
"mousetrap.min.js",
"element_searcher.js"
],
"css": [
"libnotify.css"
],
"run_at": "document_idle",
"all_frames": false
}
],
"manifest_version": 2
} | |