Dogetip Allowed Subreddits Indicator

Shows a DOM indicator that the subreddit currently being views allows/bans tipping

Dogetip Allowed Subreddits Indicator là gì?

Dogetip Allowed Subreddits Indicator là một tiện ích mở rộng Chrome được phát triển bởi matt.duncan13, và tính năng chính của nó là "Shows a DOM indicator that the subreddit currently being views allows/bans tipping".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Dogetip Allowed Subreddits Indicator

Tải xuống các tệp mở rộng Dogetip Allowed Subreddits Indicator 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

                        Displays a small floating notification to inform you if the subreddit you are currently browsing allows dogetipping.

The notification minimizes itself on screen once scrolling begins to get out of your way while still providing a helpful hint!

Subreddit allowed/banned list is pulled from www.reddit.com/r/dogecoin/wiki/other_subreddit_tipping

Originally written by Matt Duncan - DOGE donations: D5ZN46GTLs2vqLFwkxcPMdjA1q6Q9nDhKz

Ported for chrome by Maxime Kjaer - DOGE donations: D9xQ9V3BqzVcJtUj92immJJYcFsMLmVghq                    

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

Tên Dogetip Allowed Subreddits Indicator Dogetip Allowed Subreddits Indicator
ID pecgkckjkdlhoaacmmacdadfngimlkdn
URL Chính Thức https://chrome.google.com/webstore/detail/dogetip-allowed-subreddit/pecgkckjkdlhoaacmmacdadfngimlkdn
Mô tả Shows a DOM indicator that the subreddit currently being views allows/bans tipping
Kích Thước Tệp 34.77 KB
Số Lần Cài Đặt 22
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2014-02-28
Ngày Phát Hành 2014-02-28
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển matt.duncan13
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/FoxxMD/dogetip-allowedindicator
URL Trang Trợ Giúp https://github.com/FoxxMD/dogetip-allowedindicator
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dogetip Allowed Subreddits Indicator",
    "version": "1.1",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "description": "Shows a DOM indicator that the subreddit currently being views allows\/bans tipping",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/r\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.reddit.com\/r\/all\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "suchStyle.css"
            ]
        }
    ],
    "permissions": [
        "*:\/\/www.reddit.com\/r\/dogecoin\/wiki\/other_subreddit_tipping"
    ]
}