Link Tweak
Rewrite link url (href attribute of A tag) with flexible rules.
Vad är Link Tweak?
Link Tweak är en Chrome-tillägg utvecklad av https://webos-goodies.jp, och dess huvudfunktion är "Rewrite link url (href attribute of A tag) with flexible rules.".
Tilläggsskärmbilder
Ladda ner Link Tweak-förlängningens CRX-fil
Ladda ner Link Tweak-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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/ Grundläggande Information om Tillägg
| Namn | |
| ID | dmdhdobhaekkogecolgjhnnnhnngicck |
| Officiell webbadress | https://chromewebstore.google.com/detail/link-tweak/dmdhdobhaekkogecolgjhnnnhnngicck |
| Beskrivning | Rewrite link url (href attribute of A tag) with flexible rules. |
| Filstorlek | 54.97 KB |
| Antal Installationer | 530 |
| Aktuell Version | 1.1.2 |
| Senast Uppdaterad | 2012-07-05 |
| Publiceringsdatum | 2012-07-04 |
| Betyg | 3.20/5 Totalt 5 Betyg |
| Utvecklare | https://webos-goodies.jp |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | http://code.google.com/p/linktweak/ |
| Hjälpsida URL | http://code.google.com/p/linktweak/wiki/Support |
| Stödda Språk | 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"
]
}
]
} | |