Link Tweak

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

Co je Link Tweak?

Link Tweak je rozšíření Chrome vyvinuté https://webos-goodies.jp, a jeho hlavní funkcí je „Rewrite link url (href attribute of A tag) with flexible rules.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Link Tweak

Stáhněte si soubory rozšíření Link Tweak ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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/                    

Základní Informace o Rozšíření

Název Link Tweak Link Tweak
ID dmdhdobhaekkogecolgjhnnnhnngicck
Oficiální URL https://chromewebstore.google.com/detail/link-tweak/dmdhdobhaekkogecolgjhnnnhnngicck
Popis Rewrite link url (href attribute of A tag) with flexible rules.
Velikost souboru 54.97 KB
Počet instalací 530
Aktuální Verze 1.1.2
Poslední Aktualizace 2012-07-05
Datum Vydání 2012-07-04
Hodnocení 3.20/5 Celkem 5 Hodnocení
Vývojář https://webos-goodies.jp
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://code.google.com/p/linktweak/
URL Stránky Nápovědy http://code.google.com/p/linktweak/wiki/Support
Podporované Jazyky 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"
            ]
        }
    ]
}