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 là gì?

Asana Responsive Improvements là một tiện ích mở rộng Chrome được phát triển bởi michaelcook.tech, và tính năng chính của nó là "Responsive style fixes for Asana. People use modern browsers with small windows! As a frontend-developer I'm obliged to take action.".

Tải xuống tệp CRX của tiện ích mở rộng Asana Responsive Improvements

Tải xuống các tệp mở rộng Asana Responsive Improvements dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Asana Responsive Improvements Asana Responsive Improvements
ID ehphecedikcfedfdgjpcklijagnjodcf
URL Chính Thức https://chromewebstore.google.com/detail/asana-responsive-improvem/ehphecedikcfedfdgjpcklijagnjodcf
Mô tả Responsive style fixes for Asana. People use modern browsers with small windows! As a frontend-developer I'm obliged to take action.
Kích Thước Tệp 154 KB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2016-10-25
Ngày Phát Hành 2016-10-25
Nhà Phát Triển michaelcook.tech
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}