Link Tweak
Rewrite link url (href attribute of A tag) with flexible rules.
Wat is Link Tweak?
Link Tweak is een Chrome-extensie ontwikkeld door https://webos-goodies.jp, en de belangrijkste functie is "Rewrite link url (href attribute of A tag) with flexible rules.".
Extensie Screenshots
Download het CRX-bestand van de extensie Link Tweak
Download Link Tweak-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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/ Basisinformatie over de Extensie
| Naam | |
| ID | dmdhdobhaekkogecolgjhnnnhnngicck |
| Officiële URL | https://chromewebstore.google.com/detail/link-tweak/dmdhdobhaekkogecolgjhnnnhnngicck |
| Beschrijving | Rewrite link url (href attribute of A tag) with flexible rules. |
| Bestandsgrootte | 54.97 KB |
| Aantal Installaties | 530 |
| Huidige Versie | 1.1.2 |
| Laatst Bijgewerkt | 2012-07-05 |
| Publicatiedatum | 2012-07-04 |
| Beoordeling | 3.20/5 Totaal 5 Beoordelingen |
| Ontwikkelaar | https://webos-goodies.jp |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | http://code.google.com/p/linktweak/ |
| Help Pagina-URL | http://code.google.com/p/linktweak/wiki/Support |
| Ondersteunde Talen | 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"
]
}
]
} | |