Google Drive Background Color Changer
This extension will change the background color on documents in Google Drive
O que é Google Drive Background Color Changer?
Google Drive Background Color Changer é uma extensão do Chrome desenvolvida por zacharyboyd, e sua principal característica é "This extension will change the background color on documents in Google Drive".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Google Drive Background Color Changer
Baixe arquivos de extensão Google Drive Background Color Changer 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
This Chrome Extension will change the background color on documents in Google Drive.
Informações Básicas da Extensão
Nome | Google Drive Background Color Changer |
ID | lglnebacjkielbdldlkppfdcmfpbgofo |
URL Oficial | https://chromewebstore.google.com/detail/google-drive-background-c/lglnebacjkielbdldlkppfdcmfpbgofo |
Descrição | This extension will change the background color on documents in Google Drive |
Tamanho do Arquivo | 122 KB |
Contagem de Instalações | 1,653 |
Versão Atual | 0.1 |
Última Atualização | 2017-05-15 |
Data de Publicação | 2017-05-15 |
Classificação | 5.00/5 Total de 6 Avaliações |
Desenvolvedor | zacharyboyd |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Drive Background Color Changer", "version": "0.1", "browser_action": { "default_icon": "icons\/icon16.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "https:\/\/docs.google.com\/*", "http:\/\/docs.google.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/docs.google.com\/*" ], "js": [ "drive-color-changer.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "description": "This extension will change the background color on documents in Google Drive" } |