Link Tweak
Rewrite link url (href attribute of A tag) with flexible rules.
Cos'è Link Tweak?
Link Tweak è un'estensione di Chrome sviluppata da https://webos-goodies.jp, e la sua funzione principale è "Rewrite link url (href attribute of A tag) with flexible rules.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Link Tweak
Scarica i file di estensione Link Tweak in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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/
Informazioni di Base sull'Estensione
Nome | Link Tweak |
ID | dmdhdobhaekkogecolgjhnnnhnngicck |
URL Ufficiale | https://chromewebstore.google.com/detail/link-tweak/dmdhdobhaekkogecolgjhnnnhnngicck |
Descrizione | Rewrite link url (href attribute of A tag) with flexible rules. |
Dimensione del File | 54.97 KB |
Conteggio Installazioni | 530 |
Versione Corrente | 1.1.2 |
Ultimo Aggiornamento | 2012-07-05 |
Data di Pubblicazione | 2012-07-04 |
Valutazione | 3.20/5 Totale 5 Valutazioni |
Sviluppatore | https://webos-goodies.jp |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://code.google.com/p/linktweak/ |
URL della Pagina di Aiuto | http://code.google.com/p/linktweak/wiki/Support |
Lingue Supportate | 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" ] } ] } |