Link Tweak
Rewrite link url (href attribute of A tag) with flexible rules.
Co to jest Link Tweak?
Link Tweak to rozszerzenie Chrome opracowane przez https://webos-goodies.jp, a jego główną funkcją jest „Rewrite link url (href attribute of A tag) with flexible rules.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Link Tweak
Pobierz pliki rozszerzeń Link Tweak w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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/
Podstawowe informacje o rozszerzeniu
Nazwa | Link Tweak |
ID | dmdhdobhaekkogecolgjhnnnhnngicck |
Oficjalny URL | https://chromewebstore.google.com/detail/link-tweak/dmdhdobhaekkogecolgjhnnnhnngicck |
Opis | Rewrite link url (href attribute of A tag) with flexible rules. |
Rozmiar pliku | 54.97 KB |
Liczba instalacji | 530 |
Aktualna Wersja | 1.1.2 |
Ostatnia Aktualizacja | 2012-07-05 |
Data Publikacji | 2012-07-04 |
Ocena | 3.20/5 Łącznie 5 Oceny |
Deweloper | https://webos-goodies.jp |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://code.google.com/p/linktweak/ |
Adres URL Strony Pomocy | http://code.google.com/p/linktweak/wiki/Support |
Obsługiwane Języki | 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" ] } ] } |