Downworthy
Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version.
Downworthy란 무엇입니까?
Downworthy은(는) https://www.snipe.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version."입니다.
확장 프로그램 스크린샷
Downworthy 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Downworthy replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version. "Literally" becomes "figuratively", "Will Blow Your Mind" becomes "Might Perhaps Mildly Entertain You For a Moment", and so on. Visit the website at downworthy.snipe.net for more info.
확장 프로그램 기본 정보
이름 | Downworthy |
ID | pkaoiecplgdldkfihclpndbakokopjde |
공식 URL | https://chromewebstore.google.com/detail/downworthy/pkaoiecplgdldkfihclpndbakokopjde |
설명 | Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version. |
파일 크기 | 27.97 KB |
설치 횟수 | 1,508 |
현재 버전 | 0.0.8 |
최근 업데이트 | 2014-02-19 |
출시 날짜 | 2014-02-19 |
평점 | 4.24/5 총 112 개의 평점 |
개발자 | https://www.snipe.net |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://downworthy.snipe.net |
도움말 페이지 URL | http://downworthy.snipe.net |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Downworthy", "version": "0.0.8", "description": "Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version.", "permissions": [ "storage" ], "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "images\/icon19-on.png", "default_title": "Toggle Downworthy" }, "content_security_policy": "default-src 'none'; script-src 'self'", "options_page": "options.html" } |