Link Tweak

Rewrite link url (href attribute of A tag) with flexible rules.

Link Tweak क्या है?

Link Tweak https://webos-goodies.jp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Rewrite link url (href attribute of A tag) with flexible rules."।

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

screenshot

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

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

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

                        Link Tweak rewrites a link url you clicked. You can specify the rewrite rules with flexible regular expressions in the options page. Please open chrome://extensions and click this extension's "Options" link after installation.

Usage examples:
- Preview pdfs with Google Docs Viewer.
- Remove unnecessary parameters like "?src=rss".
- Add/Remove/Replace language parameter like "?hl=en".
- Use a secure connection (https).

Source code is available at http://code.google.com/p/linktweak/                    

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

नाम Link Tweak Link Tweak
ID dmdhdobhaekkogecolgjhnnnhnngicck
आधिकारिक URL https://chromewebstore.google.com/detail/link-tweak/dmdhdobhaekkogecolgjhnnnhnngicck
विवरण Rewrite link url (href attribute of A tag) with flexible rules.
फ़ाइल का आकार 54.97 KB
स्थापना संख्या 530
वर्तमान संस्करण 1.1.2
अंतिम अपडेट 2012-07-05
प्रकाशन तिथि 2012-07-04
रेटिंग 3.20/5 कुल 5 रेटिंग्स
डेवलपर https://webos-goodies.jp
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://code.google.com/p/linktweak/
सहायता पृष्ठ URL http://code.google.com/p/linktweak/wiki/Support
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Tweak",
    "version": "1.1.2",
    "description": "Rewrite link url (href attribute of A tag) with flexible rules.",
    "icons": {
        "128": "icon-128.png",
        "48": "icon-48.png"
    },
    "background": {
        "page": "index.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "Content.js"
            ]
        }
    ]
}