Next URL Distinguisher
Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow
Next URL Distinguisher là gì?
Next URL Distinguisher là một tiện ích mở rộng Chrome được phát triển bởi sneJ p., và tính năng chính của nó là "Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow".
Tải xuống tệp CRX của tiện ích mở rộng Next URL Distinguisher
Tải xuống các tệp mở rộng Next URL Distinguisher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ![]() |
ID | aeneadkgdkadipgkkncokajgaikjbijo |
URL Chính Thức | https://chrome.google.com/webstore/detail/next-url-distinguisher/aeneadkgdkadipgkkncokajgaikjbijo |
Mô tả | Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow |
Kích Thước Tệp | 4.35 KB |
Số Lần Cài Đặt | 16 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2015-05-06 |
Ngày Phát Hành | 2015-05-06 |
Nhà Phát Triển | sneJ p. |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |