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.
什麼是Asana Responsive Improvements?
Asana Responsive Improvements是由michaelcook.tech開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件
下載Asana Responsive Improvements擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | ehphecedikcfedfdgjpcklijagnjodcf |
| 官方網址 | https://chromewebstore.google.com/detail/asana-responsive-improvem/ehphecedikcfedfdgjpcklijagnjodcf |
| 簡介 | Responsive style fixes for Asana. People use modern browsers with small windows! As a frontend-developer I'm obliged to take action. |
| 檔案大小 | 154 KB |
| 安裝次數 | 26 |
| 目前版本 | 1.0.5 |
| 更新時間 | 2016-10-25 |
| 上架時間 | 2016-10-25 |
| 開發者 | michaelcook.tech |
| 付費類型 | free |
| 支援的語言 | 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"
} | |