Next URL Distinguisher

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

Next URL Distinguisherคืออะไร?

Next URL Distinguisher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sneJ p. และคุณลักษณะหลักของมันคือ "Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Next URL Distinguisher

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    ]
}