Abstract Browsing
Abstract browsing
Abstract Browsing란 무엇입니까?
Abstract Browsing은(는) https://www.newrafael.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Abstract browsing"입니다.
확장 프로그램 스크린샷
Abstract Browsing 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" ] } ] } |