Web Numerator - CNN
Replaces text with numeric representations of each word based on how many characters they contain.
Web Numerator - CNN란 무엇입니까?
Web Numerator - CNN은(는) krikenemp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replaces text with numeric representations of each word based on how many characters they contain."입니다.
확장 프로그램 스크린샷
Web Numerator - CNN 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Formula: A number representing the total amount of characters in the word, followed by a period, followed by a number of zeros equaling the total amount of characters minus two (for the first number and period), followed by a space. This formula keeps the same general spacing within the webpage, even as it removes all* letters - the only thing being replaced is the textual meaning. In its place is a translation of textual character quantity into numeric data. *The current version is functional up to twenty-character strings; anything longer than that will display normally. Only works on the CNN website.
확장 프로그램 기본 정보
이름 | Web Numerator - CNN |
ID | khelchopjdemdpjlhmghlhdhodgnomma |
공식 URL | https://chromewebstore.google.com/detail/web-numerator-cnn/khelchopjdemdpjlhmghlhdhodgnomma |
설명 | Replaces text with numeric representations of each word based on how many characters they contain. |
파일 크기 | 52.42 KB |
설치 횟수 | 13 |
현재 버전 | 2.0.4 |
최근 업데이트 | 2014-03-19 |
출시 날짜 | 2014-03-19 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | krikenemp |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Web Numerator - CNN", "version": "2.0.4", "description": "Replaces text with numeric representations of each word based on how many characters they contain.", "homepage_url": "http:\/\/bengrosser.com\/", "manifest_version": 2, "icons": { "16": "NMR8R-16.png", "48": "NMR8R-48.png", "128": "NMR8R-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.cnn.com\/*" ], "all_frames": true, "exclude_globs": [ "*:\/\/*.facebook.com\/ai.php*", "*:\/\/*.facebook.com\/ajax\/*", "*:\/\/*.facebook.com\/dialog\/*", "*:\/\/*.facebook.com\/connect\/*" ], "exclude_matches": [ "*:\/\/*.facebook.com\/ai.php*", "*:\/\/*.facebook.com\/ajax\/*", "*:\/\/*.facebook.com\/dialog\/*", "*:\/\/*.facebook.com\/connect\/*" ], "js": [ "WebNumerator.user.js" ] } ] } |