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 |
官方網址 | 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" ] } ] } |