no-np

Converts np links on reddit to regular links

no-np là gì?

no-np là một tiện ích mở rộng Chrome được phát triển bởi Ryan Haack, và tính năng chính của nó là "Converts np links on reddit to regular links".

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

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

                        Changes all np links on reddit to regular reddit links. Now supports the reddit redesign.                    

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

Tên no-np no-np
ID dimklpfhlgpdoflddlaklcgeaglaacbm
URL Chính Thức https://chromewebstore.google.com/detail/no-np/dimklpfhlgpdoflddlaklcgeaglaacbm
Mô tả Converts np links on reddit to regular links
Kích Thước Tệp 28.23 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 1.3.0
Cập Nhật Lần Cuối 2018-05-18
Ngày Phát Hành 2018-05-18
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Ryan Haack
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/haackr/no-np
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "no-np",
    "description": "Converts np links on reddit to regular links",
    "version": "1.3.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.reddit.com\/*",
                "https:\/\/*.reddit.com\/*"
            ],
            "js": [
                "fixlinks.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*.reddit.com\/*",
        "https:\/\/*.reddit.com\/*"
    ],
    "icons": {
        "128": ".\/icons\/icon128.png",
        "64": ".\/icons\/icon64.png",
        "48": ".\/icons\/icon.png",
        "32": ".\/icons\/icon32.png",
        "16": ".\/icons\/icon16.png"
    }
}