xkcd #37
This extension actually implements xkcd #37. Yeah, for real.
O que é xkcd #37?
xkcd #37 é uma extensão do Chrome desenvolvida por https://blog.tomayac.com, e sua principal característica é "This extension actually implements xkcd #37. Yeah, for real.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão xkcd #37
Baixe arquivos de extensão xkcd #37 no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Albeit famous exceptions exist in form of Wikis, the Web today is still mostly a read-only experience. This leaves the Web content consumer exposed to all sorts of typographic cruelties, such as representing the ellipsis character ’…’ with three single full stops “...”, incorrect usage of a normal space where a non-breaking space would be preferred and even omission of the Oxford comma... While fighting the cause, namely sloppy Web authors, is like a fight against wind mills and certainly impossible to realize on Web scale, fighting the symptoms is a realistic option. Using client-side work-arounds, the Web can actually be fixed one page at a time. With this extension, we show how via part-of-speech tagging and JavaScript DOM event listeners, the Web can be made a better place. On a related note, this extension has the bad ass-feature of actually implementing xkcd #37: http://xkcd.com/37/ Yeah, for real Read the accompanying scientific paper: https://docs.google.com/open?id=0B9LlSNwL2H8YbkpsV0pLQnM2bXc
Informações Básicas da Extensão
Nome | xkcd #37 |
ID | kjlobohamcahepbjhcnjhhpdgmhjkjli |
URL Oficial | https://chromewebstore.google.com/detail/xkcd-37/kjlobohamcahepbjhcnjhhpdgmhjkjli |
Descrição | This extension actually implements xkcd #37. Yeah, for real. |
Tamanho do Arquivo | 722 KB |
Contagem de Instalações | 65 |
Versão Atual | 1.0.6 |
Última Atualização | 2020-12-05 |
Data de Publicação | 2013-06-27 |
Classificação | 2.73/5 Total de 11 Avaliações |
Desenvolvedor | https://blog.tomayac.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://docs.google.com/open?id=0B9LlSNwL2H8YMGVlZjIzZTAtN2JiZS00MzIxLThjNDYtMDFhMDQ3NTEzYzU2 |
URL da Página de Ajuda | http://twitter.com/tomayac |
URL da Página de Política de Privacidade | https://raw.githubusercontent.com/tomayac/blogccasion/master/privacy-policy.txt |
Idiomas Suportados | de,en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "1.0.6", "manifest_version": 2, "description": "__MSG_extDesc__", "icons": { "48": "icon_48.png", "128": "icon_128.png" }, "default_locale": "en_US", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "lexer.js", "POSTagger.js", "lexicon.js", "amazon.js", "content_script.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } |