dotjs universal

~/.js

dotjs universal là gì?

dotjs universal là một tiện ích mở rộng Chrome được phát triển bởi p3lim, và tính năng chính của nó là "~/.js".

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

Tải xuống các tệp mở rộng dotjs universal 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

                        dotjs is a Chrome/Chromium browser extension that executes JavaScript and CSS files on websites based on their filename.

If you navigate to `www.google.com`, dotjs will execute `/scripts/google.com.js` and/or `/styles/google.com.css` if either of the files exist.

It will also execute `/scripts/default.js` and `/styles/default.css` for all your bootstrapping and library needs.

This makes it super easy to spruce up your favorite pages using JavaScript or CSS.

See https://github.com/p3lim/dotjs-universal for full installation instructions.

Works on any OS without any extra fuzz, based on the original code of defunkt.                    

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

Tên dotjs universal dotjs universal
ID mnnjfadhifkmdoalniglnmmpjggnfbam
URL Chính Thức https://chrome.google.com/webstore/detail/dotjs-universal/mnnjfadhifkmdoalniglnmmpjggnfbam
Mô tả ~/.js
Kích Thước Tệp 45.89 KB
Số Lần Cài Đặt 106
Phiên Bản Hiện Tại 1.6.1
Cập Nhật Lần Cuối 2014-08-05
Ngày Phát Hành 2014-08-05
Đánh Giá 4.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển p3lim
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/p3lim/dotjs-universal
URL Trang Trợ Giúp https://github.com/p3lim/dotjs-universal/issues
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "dotjs universal",
    "manifest_version": 2,
    "minimum_chrome_version": "23",
    "version": "1.6.1",
    "description": "~\/.js",
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "dotjs.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "scripts\/*.js",
        "styles\/*.css"
    ]
}