Dogetip Allowed Subreddits Indicator

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

Dogetip Allowed Subreddits Indicator란 무엇입니까?

Dogetip Allowed Subreddits Indicator은(는) matt.duncan13에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows a DOM indicator that the subreddit currently being views allows/bans tipping"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Dogetip Allowed Subreddits Indicator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Dogetip Allowed Subreddits Indicator Dogetip Allowed Subreddits Indicator
ID pecgkckjkdlhoaacmmacdadfngimlkdn
공식 URL https://chrome.google.com/webstore/detail/dogetip-allowed-subreddit/pecgkckjkdlhoaacmmacdadfngimlkdn
설명 Shows a DOM indicator that the subreddit currently being views allows/bans tipping
파일 크기 34.77 KB
설치 횟수 22
현재 버전 1.1
최근 업데이트 2014-02-28
출시 날짜 2014-02-28
평점 5.00/5 총 1 개의 평점
개발자 matt.duncan13
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/FoxxMD/dogetip-allowedindicator
도움말 페이지 URL https://github.com/FoxxMD/dogetip-allowedindicator
지원되는 언어 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"
    ]
}