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. 拡張機能の基本情報
| 名前 | |
| 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"
]
} | |