Neat URL
Remove garbage from URLs.
Neat URL란 무엇입니까?
Neat URL은(는) Geoffrey De Belie에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove garbage from URLs."입니다.
확장 프로그램 스크린샷
Neat URL 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Neat URL cleans URLs, removing parameters such as Google Analytics' utm parameters. Example ------- Before: http://www.phoronix.com/scan.php?page=news_item&px=Ioquake3-Auto-Updater&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Phoronix+(Phoronix) After: http://www.phoronix.com/scan.php?page=news_item&px=Ioquake3-Auto-Updater Custom rules can be added using the global format or the domain specific format (parameter@domain). A domain specific parameter would be, for example, [email protected]. Parameter rules --------------- A parameter is something that starts with ?. You can add your own parameter in the options of Neat URL. The ? is ommitted in the options, so a ?ved parameter becomes "ved". There are a few exceptions to this rule (see below) Parameters can be global (for every domain): utm_source Parameters can contain @ signs (domain-specific): [email protected] Parameters can contain @ signs with a wildcard so every subdomain will match too: param@*.wired.com Parameters can contain @ signs with a wildcard at the end of a domain name (matches every domain name which begins with "google" and ends in an unknown suffix: param@google.* Parameters can also apply globally (first rule), except for a (wilcard) domain (second rule): ref [email protected] The excluded domain always takes precedence. Should you include "ref" and "!ref", "!ref" will apply. Other valid parameters (exceptions to the ? rule): #xtor=RSS-8 (remove this parameter - be sure to include its value as well when you are using anchor tags) #[email protected] $/ref@amazon.* (remove everything after /ref on amazon domains - this will only apply when there are no query parameters left after removing the filtered query parameters) $$/ref@amazon.* (remove everything after /ref on amazon domains - this will always apply, even when there are other query parameters after removing the filtered query parameters - this option is available because the user should be in control but beware that double dollar signs are dangerous, it might break the URL) Invalid parameters: param@*.google.* (too many wildcards) !ved (this is some random string - not supported, but it might work) /ref@amazon.*$ (dollar sign should be at the beginning) History ------- Neat URL is based on Lean URL. Neat URL contains a few improvements: * set your own URL parameters on the options page (to reach feature parity with Pure URL) * fixed for recent Firefox versions * a nice animation in the toolbar (can be changed or disabled) * domain-specific blocked parameters (to reach feature parity with Pure URL) * wildcard domain-specific blocked parameters Bug reports and feature requests -------------------------------- You can open an issue on GitHub. Please include "Neat URL" in the title of the newly created issue: https://github.com/Smile4ever/Neat-URL/issues/new
확장 프로그램 기본 정보
이름 | Neat URL |
ID | jchobbjgibcahbheicfocecmhocglkco |
공식 URL | https://chromewebstore.google.com/detail/neat-url/jchobbjgibcahbheicfocecmhocglkco |
설명 | Remove garbage from URLs. |
파일 크기 | 60 KB |
설치 횟수 | 8,400 |
현재 버전 | 5.0.0 |
최근 업데이트 | 2023-12-21 |
출시 날짜 | 2020-04-27 |
평점 | 4.20/5 총 41 개의 평점 |
개발자 | Geoffrey De Belie |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Smile4ever/Neat-URL |
도움말 페이지 URL | https://github.com/Smile4ever/Neat-URL |
지원되는 언어 | de,en,nl,ru,uk,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Neat URL", "description": "__MSG_extensionDescription__", "homepage_url": "http:\/\/itsafeature.org", "manifest_version": 2, "version": "5.0.0", "default_locale": "en", "background": { "scripts": [ "browser-polyfill.min.js", "background.js", "toolbaricon.js" ] }, "icons": { "48": "icons\/dark\/neaturl-48.png", "96": "icons\/dark\/neaturl-96-state0.png" }, "permissions": [ "storage", "notifications", "contextMenus", "webRequest", "webRequestBlocking", "tabs", " |