Next URL Distinguisher

Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow

Qu'est-ce que Next URL Distinguisher ?

Next URL Distinguisher est une extension Chrome développée par sneJ p., et sa fonction principale est "Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow".

Télécharger le fichier CRX de l'extension Next URL Distinguisher

Téléchargez les fichiers d'extension Next URL Distinguisher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Next URL Distinguisher Next URL Distinguisher
ID aeneadkgdkadipgkkncokajgaikjbijo
URL Officiel https://chrome.google.com/webstore/detail/next-url-distinguisher/aeneadkgdkadipgkkncokajgaikjbijo
Description Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow
Taille du Fichier 4.35 KB
Nombre d'Installations 16
Version Actuelle 0.2
Dernière Mise à Jour 2015-05-06
Date de Publication 2015-05-06
Développeur sneJ p.
Type de Paiement free
Langues Prises en Charge 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"
    ]
}