URL Incrementer

Increment [+] a URL or go to the Next [>] Page; Supports Auto- and Download-Incrementing

URL Incrementer क्या है?

URL Incrementer Roy Six द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Increment [+] a URL or go to the Next [>] Page; Supports Auto- and Download-Incrementing"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में URL Incrementer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Important:
I really want you to be 100% happy with URLI, so if something isn't working right, or if there's anything you don't like, please before leaving a low-rating/review, email me and give me a chance to fix it, and I promise I will. Developers do not get notifications when you leave a review or open a support issue. Thank you (times infinity!) for letting URLI play a small part in your Chrome experience!

URLI ("yur-lee") increments URLs. For example, if the URL has a "page=1" in it or if there's a Next [>] link on the page, URLI can get you to "page=2" quickly and conveniently.

Features:
- Auto Incrementing
- Download Incrementing [Experimental] (Requires Extra Permissions) **
- Increment [+] Decrement [-]
- Next [>] Prev [<]
- Chrome Shortcuts
- Internal Keyboard and Mouse Button Shortcuts (Requires Extra Permissions)
- "1 Click" Increment [+] Decrement [-] Button Extensions for Your Toolbar (Available on the Chrome Web Store)
- Error & Redirect Skipping: 404 Page Not Found, 3XX Redirects, 4XX Client Errors, 5XX Server Errors
- Options: Alphanumeric Incrementing, Change how URLI pre-selects the number to increment, Intervals, Leading Zeros... and more
- Safe, Open Source, Lightweight, No Ads, No Bloat, and Requires no permissions for most functionality

** Download Incrementing is an optional and experimental feature that is designed to be used with Auto to make a unique "Auto Incrementer Downloader." It's still very much in BETA. Thank you for being patient as this feature continues to be improved.

Special Thanks:
NickMWPrince and Gopi P. (AUTO Concept), Coolio Wolfus (Ver 1.X Testing), Eric C. (Alphanumeric Idea), and Adam C. & Will (Feedback)

... and most of all you for using URLI :)                    

एक्सटेंशन की मूल जानकारी

नाम URL Incrementer URL Incrementer
ID hjgllnccfndbjbedlecgdedlikohgbko
आधिकारिक URL https://chromewebstore.google.com/detail/url-incrementer/hjgllnccfndbjbedlecgdedlikohgbko
विवरण Increment [+] a URL or go to the Next [>] Page; Supports Auto- and Download-Incrementing
फ़ाइल का आकार 174 KB
स्थापना संख्या 4,368
वर्तमान संस्करण 5.8
अंतिम अपडेट 2018-09-17
प्रकाशन तिथि 2018-09-16
रेटिंग 4.41/5 कुल 54 रेटिंग्स
डेवलपर Roy Six
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/roysix/url-incrementer
सहायता पृष्ठ URL https://github.com/roysix/url-incrementer/issues
गोपनीयता नीति पृष्ठ URL https://github.com/sixcious/info/wiki/Privacy-Policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_name__",
    "version": "5.8",
    "default_locale": "en",
    "description": "__MSG_description__",
    "icons": {
        "16": "img\/icons\/dark\/16.png",
        "48": "img\/icons\/dark\/48.png",
        "128": "img\/icons\/dark\/128.png"
    },
    "browser_action": {
        "default_title": "__MSG_title__",
        "default_icon": {
            "16": "img\/icons\/dark\/16.png",
            "24": "img\/icons\/dark\/24.png",
            "32": "img\/icons\/dark\/32.png"
        },
        "default_popup": "html\/popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/action.js",
            "js\/increment-decrement.js",
            "js\/auto.js"
        ],
        "persistent": true
    },
    "commands": {
        "increment": {
            "suggested_key": {
                "default": "Ctrl+Shift+Up"
            },
            "description": "Increment [+]"
        },
        "decrement": {
            "suggested_key": {
                "default": "Ctrl+Shift+Down"
            },
            "description": "Decrement [-]"
        },
        "next": {
            "description": "Next [>]"
        },
        "prev": {
            "description": "Prev [<]"
        },
        "clear": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "Clear [x]"
        },
        "auto": {
            "suggested_key": {
                "default": "Ctrl+Shift+A"
            },
            "description": "Auto Pause \/ Resume"
        }
    },
    "minimum_chrome_version": "55",
    "optional_permissions": [
        "declarativeContent",
        "downloads",
        ""
    ],
    "options_ui": {
        "page": "html\/options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "short_name": "__MSG_short_name__"
}