Next URL Distinguisher
Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow
Cos'è Next URL Distinguisher?
Next URL Distinguisher è un'estensione di Chrome sviluppata da sneJ p., e la sua funzione principale è "Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow".
Scarica il file CRX dell'estensione Next URL Distinguisher
Scarica i file di estensione Next URL Distinguisher 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
Tries to distinguish and open the next or previous website by increasing or decreasing the last found integer of the URL by 1. It transforms i.E. http://awesomePictures.com/pics/1.jpg --> http://awesomePictures.com/pics/2.jpg or, http://dailyNews.com/id-512 --> http://dailyNews.com/id-511, or http://iamMisterBond.com/007 --> http://iamMisterBond.com/008 Just use CTRL + Right/Left Arrow Key to open the next or previous webpage.
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | aeneadkgdkadipgkkncokajgaikjbijo |
URL Ufficiale | https://chrome.google.com/webstore/detail/next-url-distinguisher/aeneadkgdkadipgkkncokajgaikjbijo |
Descrizione | Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow |
Dimensione del File | 4.35 KB |
Conteggio Installazioni | 16 |
Versione Corrente | 0.2 |
Ultimo Aggiornamento | 2015-05-06 |
Data di Pubblicazione | 2015-05-06 |
Sviluppatore | sneJ p. |
Tipo di Pagamento | free |
Lingue Supportate | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Next URL Distinguisher", "description": "Distinguishes the next\/previous URL and opens it via CTRL + Right\/Left Arrow", "version": "0.2", "author": "sneJ p.", "commands": { "next-page": { "suggested_key": { "default": "Ctrl+Right", "mac": "Command+Right" }, "description": "key to distinguish and open the next page" }, "previous-page": { "suggested_key": { "default": "Ctrl+Left", "mac": "Command+Left" }, "description": "key to distinguish and open the previous page" } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab" ] } |