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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | ![]() |
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" ] } |