PB Comments Plugin
This extension improves the usability of comments on Crikey's Poll Bludger blog.
Τι είναι το PB Comments Plugin;
Το PB Comments Plugin είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον scpc, και η κύρια λειτουργία του είναι "This extension improves the usability of comments on Crikey's Poll Bludger blog.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης PB Comments Plugin
Λήψη αρχείων επέκτασης PB Comments Plugin σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 |
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" ] } |