Page Rotate
Rotate any web page with the click of a button.
O que é Page Rotate?
Page Rotate é uma extensão do Chrome desenvolvida por Jesse Skinner, e sua principal característica é "Rotate any web page with the click of a button.".
Baixar o arquivo CRX da Extensão Page Rotate
Baixe arquivos de extensão Page Rotate 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
Informações Básicas da Extensão
Nome | |
ID | igefdeghmmfballonnobhendpkeinikc |
URL Oficial | https://chrome.google.com/webstore/detail/page-rotate/igefdeghmmfballonnobhendpkeinikc |
Descrição | Rotate any web page with the click of a button. |
Tamanho do Arquivo | 17.03 KB |
Contagem de Instalações | 2,000 |
Versão Atual | 0.1 |
Última Atualização | 2013-11-21 |
Data de Publicação | 2013-11-21 |
Classificação | 2.85/5 Total de 27 Avaliações |
Desenvolvedor | Jesse Skinner |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Page Rotate", "version": "0.1", "description": "Rotate any web page with the click of a button.", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "pagerotate.js", "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "page_action": { "default_icon": { "19": "icons\/19.png", "38": "icons\/38.png" }, "default_title": "Page Rotate" } } |