Blockr
A simple, lightweight post blocking solution for Tumblr
Qu'est-ce que Blockr ?
Blockr est une extension Chrome développée par Elizabeth Harper, et sa fonction principale est "A simple, lightweight post blocking solution for Tumblr".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Blockr
Téléchargez les fichiers d'extension Blockr au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Blockr is a post blocker for the popular blogging site Tumblr. This extension adds a small button to each post which blocks the post from your dashboard. Posts are blocked based on their root post ID so the post will be hidden no matter who reblogs it. The block button is located at the top right of each post so users can block offensive or unwanted content without having to scroll through the entirety of a post.
Informations de Base sur l'Extension
Nom | Blockr |
ID | hnaljgbbcjabdcibeliipmcifmfeionc |
URL Officiel | https://chromewebstore.google.com/detail/blockr/hnaljgbbcjabdcibeliipmcifmfeionc |
Description | A simple, lightweight post blocking solution for Tumblr |
Taille du Fichier | 24.03 KB |
Nombre d'Installations | 28 |
Version Actuelle | 1.1.1 |
Dernière Mise à Jour | 2017-05-01 |
Date de Publication | 2017-05-01 |
Évaluation | 4.25/5 Total 4 Évaluations |
Développeur | Elizabeth Harper |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/EllieFops/blockr |
URL de la Page d'Aide | https://github.com/EllieFops/blockr/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Blockr", "description": "A simple, lightweight post blocking solution for Tumblr", "version": "1.1.1", "author": { "name": "Elizabeth Harper", "email": "[email protected]", "url": "https:\/\/github.com\/EllieFops" }, "incognito": "not_allowed", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.tumblr.com\/dashboard" ], "css": [ "css\/blockr.css" ], "js": [ "js\/blockr.js" ] } ], "icons": { "16": "res\/16.png", "32": "res\/32.png", "48": "res\/48.png", "128": "res\/128.png" } } |