Next URL Distinguisher
Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow
Wat is Next URL Distinguisher?
Next URL Distinguisher is een Chrome-extensie ontwikkeld door sneJ p., en de belangrijkste functie is "Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow".
Download het CRX-bestand van de extensie Next URL Distinguisher
Download Next URL Distinguisher-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
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.
Basisinformatie over de Extensie
Naam | ![]() |
ID | aeneadkgdkadipgkkncokajgaikjbijo |
Officiële URL | https://chrome.google.com/webstore/detail/next-url-distinguisher/aeneadkgdkadipgkkncokajgaikjbijo |
Beschrijving | Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow |
Bestandsgrootte | 4.35 KB |
Aantal Installaties | 16 |
Huidige Versie | 0.2 |
Laatst Bijgewerkt | 2015-05-06 |
Publicatiedatum | 2015-05-06 |
Ontwikkelaar | sneJ p. |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |