PB Comments Plugin

This extension improves the usability of comments on Crikey's Poll Bludger blog.

PB Comments Plugin क्या है?

PB Comments Plugin scpc द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension improves the usability of comments on Crikey's Poll Bludger blog."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में PB Comments Plugin एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Updates the formatting of comments on Crikey's 'Poll Bludger' blog.  Specifically, does the following things:

 - Restores display of avatars in each post
 - Adds ability to preview before posting
 - Adds ability to automatically quote a post when writing a reply
 - Adds ability to view post date by hovering over the "x minutes ago" text
 - Adds ability to block specific users
 - Adds pagination controls/ability to jump to a specific page
 - Includes built-in ad-blocking
 - Automatically fetches and displays new posts without needing a page refresh
 - Displays the post number of each comment
 - Autoquotes when creating a threaded reply
 - Reformats the comment header section
 - Automatically renders quoted text in italics
 - Avoids rendering the same comment(s) twice
 - Allows configuration of the number of comments to load per page
 - Allows nested comments to be toggled on and off (deprecated as of v0.7.0)
 - Allows comments to be sorted newest first, or oldest first
 - Fixes issue where quoting an emoticon truncates submitted replies
 - Displays Youtube videos inline
 - Automatically opens external links in a new tab

This plugin ONLY works at the following website:

https://www.pollbludger.net                    

एक्सटेंशन की मूल जानकारी

नाम PB Comments Plugin PB Comments Plugin
ID onjomgpfepfmffelldjhpapljdfiodpi
आधिकारिक URL https://chromewebstore.google.com/detail/pb-comments-plugin/onjomgpfepfmffelldjhpapljdfiodpi
विवरण This extension improves the usability of comments on Crikey's Poll Bludger blog.
फ़ाइल का आकार 74.5 KB
स्थापना संख्या 181
वर्तमान संस्करण 0.8.15
अंतिम अपडेट 2021-05-23
प्रकाशन तिथि 2017-11-27
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर scpc
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PB Comments Plugin",
    "description": "This extension improves the usability of comments on Crikey's Poll Bludger blog.",
    "version": "0.8.15",
    "icons": {
        "16": "icon-red-16.png",
        "32": "icon-red-32.png",
        "48": "icon-red-48.png",
        "128": "icon-red-128.png"
    },
    "page_action": {
        "default_icon": {
            "16": "icon-red-16.png",
            "24": "icon-red-24.png",
            "32": "icon-red-32.png"
        },
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.pollbludger.net\/*"
            ],
            "css": [],
            "js": [
                "jquery-3.2.0.js",
                "inject.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "fixComments.js",
        "colorbox.js"
    ],
    "permissions": [
        "storage",
        "declarativeContent"
    ]
}