Asana Responsive Improvements
Responsive style fixes for Asana. People use modern browsers with small windows! As a frontend-developer I'm obliged to take action.
Co to jest Asana Responsive Improvements?
Asana Responsive Improvements to rozszerzenie Chrome opracowane przez michaelcook.tech, a jego główną funkcją jest „Responsive style fixes for Asana. People use modern browsers with small windows! As a frontend-developer I'm obliged to take action.”.
Pobierz plik CRX rozszerzenia Asana Responsive Improvements
Pobierz pliki rozszerzeń Asana Responsive Improvements w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Responsive style fixes for Asana.
People use modern browsers with small windows!
As a frontend-developer I'm obliged to take action.
This is a non-for-profit extension simply to help with accessibility. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ehphecedikcfedfdgjpcklijagnjodcf |
| Oficjalny URL | https://chromewebstore.google.com/detail/asana-responsive-improvem/ehphecedikcfedfdgjpcklijagnjodcf |
| Opis | Responsive style fixes for Asana. People use modern browsers with small windows! As a frontend-developer I'm obliged to take action. |
| Rozmiar pliku | 154 KB |
| Liczba instalacji | 26 |
| Aktualna Wersja | 1.0.5 |
| Ostatnia Aktualizacja | 2016-10-25 |
| Data Publikacji | 2016-10-25 |
| Deweloper | michaelcook.tech |
| Typ Płatności | free |
| Obsługiwane Języki | en-GB |
| manifest.json | |
{
"name": "Asana Responsive Improvements",
"version": "1.0.5",
"description": "Responsive style fixes for Asana. People use modern browsers with small windows! As a frontend-developer I'm obliged to take action.",
"manifest_version": 2,
"permissions": [
"activeTab"
],
"icons": {
"16": "icon16.png",
"19": "icon19.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"name": "Manipulate DOM",
"icons": {
"16": "icon16.png",
"19": "icon19.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_icon": {
"16": "icon16.png",
"19": "icon19.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/app.asana.com\/*"
],
"css": [
"style.css"
],
"js": [
"jquery.js"
]
}
],
"background": {
"persistent": false,
"scripts": [
"jquery.js",
"background.js"
]
},
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
} | |