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ファイルをダウンロード
Web Numerator - CNN拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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" ] } ] } |