DrumUp

Content marketing and news tracking

DrumUp란 무엇입니까?

DrumUp은(는) https://drumup.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Content marketing and news tracking"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

DrumUp 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        When you're browsing the web, DrumUp shows you content related to what you're reading and lets you share it easily. It is a social media manager that discovers the coolest and the most relevant content from around the web for you to read and share with your social followers.                    

확장 프로그램 기본 정보

이름 DrumUp DrumUp
ID hdbkcjlhppelfoljjhfkgaeffmamkmcb
공식 URL https://chromewebstore.google.com/detail/drumup/hdbkcjlhppelfoljjhfkgaeffmamkmcb
설명 Content marketing and news tracking
파일 크기 267 KB
설치 횟수 2,460
현재 버전 0.0.0.32
최근 업데이트 2021-06-16
출시 날짜 2017-12-18
평점 4.65/5 총 26 개의 평점
개발자 https://drumup.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://drumup.io/
도움말 페이지 URL https://drumup.io/contact
개인정보 보호 정책 페이지 URL https://drumup.io/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DrumUp",
    "version": "0.0.0.32",
    "author": "DrumUp.io",
    "manifest_version": 2,
    "description": "Content marketing and news tracking",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/tweetdeck.twitter.com\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "drumup_twitter.js"
            ],
            "css": [
                "drumup_twitter.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/side_drum_light.png",
        "default_title": "DrumUp",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js",
            "js\/jquery.min.js",
            "js\/bootstrap.min.js"
        ]
    },
    "web_accessible_resources": [
        "images\/icon_color.png"
    ]
}