Next URL Distinguisher

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

什麼是Next URL Distinguisher?

Next URL Distinguisher是由sneJ p.開發的Chrome擴展程式,該擴展的主要功能是“Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow”。

下載Next URL Distinguisher擴展crx文件

下載Next URL Distinguisher擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Next URL Distinguisher Next URL Distinguisher
ID aeneadkgdkadipgkkncokajgaikjbijo
官方網址 https://chrome.google.com/webstore/detail/next-url-distinguisher/aeneadkgdkadipgkkncokajgaikjbijo
簡介 Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow
檔案大小 4.35 KB
安裝次數 16
目前版本 0.2
更新時間 2015-05-06
上架時間 2015-05-06
開發者 sneJ p.
付費類型 free
支援的語言 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"
    ]
}