Link Tweak
Rewrite link url (href attribute of A tag) with flexible rules.
O que é Link Tweak?
Link Tweak é uma extensão do Chrome desenvolvida por https://webos-goodies.jp, e sua principal característica é "Rewrite link url (href attribute of A tag) with flexible rules.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Link Tweak
Baixe arquivos de extensão Link Tweak no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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/
Informações Básicas da Extensão
Nome | Link Tweak |
ID | dmdhdobhaekkogecolgjhnnnhnngicck |
URL Oficial | https://chromewebstore.google.com/detail/link-tweak/dmdhdobhaekkogecolgjhnnnhnngicck |
Descrição | Rewrite link url (href attribute of A tag) with flexible rules. |
Tamanho do Arquivo | 54.97 KB |
Contagem de Instalações | 530 |
Versão Atual | 1.1.2 |
Última Atualização | 2012-07-05 |
Data de Publicação | 2012-07-04 |
Classificação | 3.20/5 Total de 5 Avaliações |
Desenvolvedor | https://webos-goodies.jp |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://code.google.com/p/linktweak/ |
URL da Página de Ajuda | http://code.google.com/p/linktweak/wiki/Support |
Idiomas Suportados | 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" ] } ] } |