Denote

Displays reblogs with comments on tumblr posts.

Denote là gì?

Denote là một tiện ích mở rộng Chrome được phát triển bởi Sourrust, và tính năng chính của nó là "Displays reblogs with comments on tumblr posts.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

                        New in version 0.3.0

- Show the context of the current post response

With tumblr's default view of a chain of reblogs it looks like a giant, unreadable pyramid at a certain point. With this new feature in denote, you can view previous post in a more flat pattern -- from the original down to the current reblog. It makes reading the conversation more tolerable and much easier on newer people not accustomed to tumblr's unique design of a conversation.

New in version 0.2.1:

- Bug fixes
- Fix grouping of responses
- Fix horizontal scrollbar size

New in version 0.2.0:

- New button that opens current blog post in a new tab
- Pulls in reply typed notes

New in version 0.1.0:

- View full reblog posts with denote
- Notes show up as they load in                    

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

Tên Denote Denote
ID ibfbkmghalfjcfeoocejnhhenidpgnbg
URL Chính Thức https://chromewebstore.google.com/detail/denote/ibfbkmghalfjcfeoocejnhhenidpgnbg
Mô tả Displays reblogs with comments on tumblr posts.
Kích Thước Tệp 216 KB
Số Lần Cài Đặt 70
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2015-05-08
Ngày Phát Hành 2015-05-08
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Sourrust
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Denote",
    "description": "Displays reblogs with comments on tumblr posts.",
    "version": "0.3.0",
    "permissions": [
        "http:\/\/*.tumblr.com\/post\/*"
    ],
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.tumblr.com\/post\/*"
            ],
            "js": [
                "js\/contentscript.js"
            ],
            "run_at": "document_end"
        }
    ]
}