Abstract Browsing
Abstract browsing
Abstract Browsingとは何ですか?
Abstract Browsingはhttps://www.newrafael.comによって開発されたChromeの拡張機能で、その主な機能は「Abstract browsing」です。
拡張機能のスクリーンショット
Abstract Browsing拡張機能のCRXファイルをダウンロード
Abstract Browsing拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Abstract Browsing |
ID | nmkbjeagaobhphiipgigbjhligebkfcg |
公式URL | https://chromewebstore.google.com/detail/abstract-browsing/nmkbjeagaobhphiipgigbjhligebkfcg |
説明 | Abstract browsing |
ファイルサイズ | 38.47 KB |
インストール数 | 2,281 |
現在のバージョン | 2.0.0 |
最終更新日 | 2024-01-09 |
公開日 | 2017-12-05 |
評価 | 4.48/5 合計 27 レビュー |
開発者 | https://www.newrafael.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://www.newrafael.com |
ヘルプページのURL | http://www.newrafael.com |
対応言語 | 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" ] } ] } |