Abstract Browsing
Abstract browsing
Qu'est-ce que Abstract Browsing ?
Abstract Browsing est une extension Chrome développée par https://www.newrafael.com, et sa fonction principale est "Abstract browsing".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Abstract Browsing
Téléchargez les fichiers d'extension Abstract Browsing 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
Abstract Browsing is an extension that turns any website into a colorful abstract composition. You can surf the web as usual, links remain active. You can turn the extension on or off at any moment. Collection of Stedelijk Museum Amsterdam For personal use only: https://creativecommons.org/licenses/by-nc/4.0/ An art project by Rafaël Rozendaal http://www.newrafael.com Code by Reinier Feijen http://www.boxofchocolates.nl
Informations de Base sur l'Extension
Nom | Abstract Browsing |
ID | nmkbjeagaobhphiipgigbjhligebkfcg |
URL Officiel | https://chromewebstore.google.com/detail/abstract-browsing/nmkbjeagaobhphiipgigbjhligebkfcg |
Description | Abstract browsing |
Taille du Fichier | 38.47 KB |
Nombre d'Installations | 2,281 |
Version Actuelle | 2.0.0 |
Dernière Mise à Jour | 2024-01-09 |
Date de Publication | 2017-12-05 |
Évaluation | 4.48/5 Total 27 Évaluations |
Développeur | https://www.newrafael.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://www.newrafael.com |
URL de la Page d'Aide | http://www.newrafael.com |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Abstract Browsing", "version": "2.0.0", "manifest_version": 3, "description": "Abstract browsing", "homepage_url": "http:\/\/www.abstractbrowsing.net", "author": "Rafa\u00ebl Rozendaal & Reinier Feijen", "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "permissions": [ "tabs", "activeTab", "storage", "scripting" ], "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "action": { "name": "Start Abstract Browsing", "default_icon": "abstract-yes.png", "icons": [ "abstract-yes.png", "abstract-no.png" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "hide.css" ], "js": [ "config.js", "check.js", "jquery-2.1.1.min.js" ] }, { "matches": [ "*:\/\/chrome.google.com\/webstore*" ], "css": [ "general.css" ] } ] } |