Tumblr personal post highlighter

Highlight a blog's uploaded posts

Tumblr personal post highlighterคืออะไร?

Tumblr personal post highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lluisrojass และคุณลักษณะหลักของมันคือ "Highlight a blog's uploaded posts"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tumblr personal post highlighter

ดาวน์โหลดไฟล์ส่วนขยาย Tumblr personal post highlighter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This is a Chrome browser extension that highlights a Tumblr blog's personally uploaded content. Tumblr has historically failed to provide this functionality to users, with many resorting to third party alternatives. 

On Quora: On Tumblr, how do you view somebody's original posts?(https://www.quora.com/On-Tumblr-how-do-you-view-somebodys-original-posts):

If what you’re referring to is how to find someone’s original posts in their blog, that can be difficult. Some people who keep their blogs organized tend to tag their own posts. If that’s the case with that “somebody” then just find which tag they’re using for their original posts and check it out. If they don’t tag their original posts then it’s going to be quite hard to find them without navigating all the way through their blog.  

Usage

Add the extension to Chrome and personally uploaded posts will now show a green indicator on a blog's archive. To toggle highlighting on/off for a blog, click the green application icon.

Why an extension?  

There exist dedicated online tools which perform this function, such as https://jetblackcode.com/TumblrOriginalPostFinder. However, these tools are trying to deliver dedicated web experiences, and impose behavior such as pagination or very limited filter/sort functionality. This extension enhances your native Tumblr browser experience, giving you the freedom to use Tumblr's own filter/sort functionality and UI. 

The application is built to support Chrome 68 and above.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tumblr personal post highlighter Tumblr personal post highlighter
ID lcfdkkodbhjgooidmbbofnafakdjnblk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tumblr-personal-post-high/lcfdkkodbhjgooidmbbofnafakdjnblk
คำอธิบาย Highlight a blog's uploaded posts
ขนาดไฟล์ 32.83 KB
จำนวนการติดตั้ง 29
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2023-03-19
วันที่เผยแพร่ 2019-11-24
ผู้พัฒนา lluisrojass
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/lluisrojass/tumblr-personal-post-highlighter
URL หน้าช่วยเหลือ https://github.com/lluisrojass/tumblr-personal-post-highlighter
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tumblr personal post highlighter",
    "author": "Luis Rojas ",
    "manifest_version": 2,
    "version": "1.1.0",
    "description": "Highlight a blog's uploaded posts",
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "page_action": {
        "default_tooltip": "Personal Post Highlighter for Tumblr",
        "default_icon": {
            "16": "icons\/off\/16x16.png",
            "32": "icons\/off\/32x32.png",
            "48": "icons\/off\/48x48.png",
            "128": "icons\/off\/128x128.png"
        }
    },
    "icons": {
        "16": "icons\/off\/16x16.png",
        "32": "icons\/off\/32x32.png",
        "48": "icons\/off\/48x48.png",
        "128": "icons\/off\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.tumblr.com\/archive*"
            ],
            "js": [
                "lib\/content.bundle.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "lib\/ui.background.bundle.js",
            "lib\/installer.background.bundle.js"
        ],
        "persist": false
    }
}