Next URL Distinguisher
Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow
Next URL Distinguisher क्या है?
Next URL Distinguisher sneJ p. द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Distinguishes the next/previous URL and opens it via CTRL + Right/Left Arrow"।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Next URL Distinguisher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |