Bookmark Tweet to Browser

Bookmark tweet to browser bookmark directly from timeline using embedded button.

Bookmark Tweet to Browser란 무엇입니까?

Bookmark Tweet to Browser은(는) redhoyasa에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bookmark tweet to browser bookmark directly from timeline using embedded button."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Bookmark Tweet to Browser 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Twitter has bookmark feature, but we cannot organize the bookmarked tweets. Alternatively, we could bookmark tweet to the browser bookmark directly and organize it, but we need to open the individual tweet into new tab before bookmarking the tweet.

This extension provides shortcut to bookmark tweet directly from timeline using embedded button in tweet.

Feature:
- Add tweet to browser bookmark (will be added to Other Bookmarks folder in Chrome)
- Remove bookmarked tweet from browser bookmark                    

확장 프로그램 기본 정보

이름 Bookmark Tweet to Browser Bookmark Tweet to Browser
ID fcohgfilngajddgokkckbpfkpmojoejf
공식 URL https://chromewebstore.google.com/detail/bookmark-tweet-to-browser/fcohgfilngajddgokkckbpfkpmojoejf
설명 Bookmark tweet to browser bookmark directly from timeline using embedded button.
파일 크기 42.12 KB
설치 횟수 75
현재 버전 0.1.0
최근 업데이트 2019-10-31
출시 날짜 2019-10-31
평점 5.00/5 총 2 개의 평점
개발자 redhoyasa
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bookmark Tweet to Browser",
    "version": "0.1.0",
    "short_name": "Bookmark Tweet to Browser",
    "description": "Bookmark tweet to browser bookmark directly from timeline using embedded button.",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "bookmarks"
    ],
    "background": {
        "scripts": [
            "dist\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "css": [
                "dist\/css\/styles.css"
            ],
            "js": [
                "dist\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "app\/images\/icon16.png",
        "48": "app\/images\/icon48.png",
        "128": "app\/images\/icon128.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}