Cachebuster
Front-end devs: stop fiddling with the address bar every time you need fresh-baked server goodness.
Cachebuster란 무엇입니까?
Cachebuster은(는) https://www.niftinessafoot.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Front-end devs: stop fiddling with the address bar every time you need fresh-baked server goodness."입니다.
확장 프로그램 스크린샷
Cachebuster 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
## Usage Hitting [alt + r] appends the current tab’s URL with a `cachebuster` querystring key, using the POSIX time as a value. (Clicking the extension icon works too, I guess.) This addition is pushed on using replaceState and then the tab is reloaded as a callback. The history remains unpolluted. The querystring is appended if it exists or created if it doesn’t. Anchor links remain intact, too. No analytics. No special permissions. Because that’s kinda creepy. ## Version Log ---1.0.3--- • Optimized the PNG set, knocking a few Kb out of the package. ---1.0.2--- • Snappy new marketing copy! I’m going to make millions! • Lowercased the querystring key to “cachebuster”. I’m sorry, I should have known better the first time. I don’t know what I was thinking. ---1.0.1--- • Various tinkers. ## Sourcecode See how the sausage is made at https://github.com/niftinessafoot/cachebuster
확장 프로그램 기본 정보
이름 | Cachebuster |
ID | afiinpbcebimbkifmejdieegbekceodk |
공식 URL | https://chromewebstore.google.com/detail/cachebuster/afiinpbcebimbkifmejdieegbekceodk |
설명 | Front-end devs: stop fiddling with the address bar every time you need fresh-baked server goodness. |
파일 크기 | 10.2 KB |
설치 횟수 | 303 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2022-09-19 |
출시 날짜 | 2018-04-22 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | https://www.niftinessafoot.com |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/niftinessafoot/cachebuster |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Matthew Smith", "background": { "persistent": false, "scripts": [ "cachebuster.js", "background.js" ] }, "browser_action": { "default_icon": { "128": "i\/128.png", "16": "i\/16.png", "32": "i\/32.png", "48": "i\/48.png" } }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+R" } } }, "description": "Front-end devs: stop fiddling with the address bar every time you need fresh-baked server goodness.", "icons": { "128": "i\/128.png", "16": "i\/16.png", "32": "i\/32.png", "48": "i\/48.png" }, "manifest_version": 2, "minimum_chrome_version": "45", "name": "Cachebuster", "short_name": "Cachebuster", "permissions": [ "activeTab" ], "version": "1.0.3" } |