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.
Was ist Asana Responsive Improvements?
Asana Responsive Improvements ist eine Chrome-Erweiterung, die von michaelcook.tech entwickelt wurde, und ihr Hauptmerkmal ist "Responsive style fixes for Asana. People use modern browsers with small windows! As a frontend-developer I'm obliged to take action.".
Asana Responsive Improvements-Erweiterungs-CRX-Datei herunterladen
Laden Sie Asana Responsive Improvements-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ehphecedikcfedfdgjpcklijagnjodcf |
| Offizielle URL | https://chromewebstore.google.com/detail/asana-responsive-improvem/ehphecedikcfedfdgjpcklijagnjodcf |
| Beschreibung | Responsive style fixes for Asana. People use modern browsers with small windows! As a frontend-developer I'm obliged to take action. |
| Dateigröße | 154 KB |
| Installationsanzahl | 26 |
| Aktuelle Version | 1.0.5 |
| Letztes Update | 2016-10-25 |
| Veröffentlichungsdatum | 2016-10-25 |
| Entwickler | michaelcook.tech |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
} | |