DeviantArt Filter
Allows configurable filtering/removal of deviations by user and/or keyword on DeviantArt.
DeviantArt Filter란 무엇입니까?
DeviantArt Filter은(는) Ryan Thaut에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows configurable filtering/removal of deviations by user and/or keyword on DeviantArt."입니다.
확장 프로그램 스크린샷
DeviantArt Filter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
DEVIANTART FILTER FOR GOOGLE CHROME > Allows configurable filtering/removal of deviations by user, tag, and/or category on DeviantArt OVERVIEW Have you ever want to block/filter deviations (a.k.a. submissions) while browsing DeviantArt? Well now you can! Just install DeviantArt Filter from the Chrome Web Store and start filtering by user, tag, and/or category. Visit the official DeviantArt Filter site for usage instructions, release notes, and more: https://rthaut.github.io/deviantART-Filter/
확장 프로그램 기본 정보
이름 | DeviantArt Filter |
ID | odlmamilbohnpnoomjclomghphbajikp |
공식 URL | https://chromewebstore.google.com/detail/deviantart-filter/odlmamilbohnpnoomjclomghphbajikp |
설명 | Allows configurable filtering/removal of deviations by user and/or keyword on DeviantArt. |
파일 크기 | 486 KB |
설치 횟수 | 2,000 |
현재 버전 | 6.2.2 |
최근 업데이트 | 2024-01-24 |
출시 날짜 | 2020-05-24 |
평점 | 3.84/5 총 31 개의 평점 |
개발자 | Ryan Thaut |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://rthaut.github.io/deviantART-Filter/ |
도움말 페이지 URL | https://github.com/rthaut/deviantART-Filter |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_ExtensionName__", "description": "__MSG_ExtensionDescription__", "version": "6.2.2", "short_name": "__MSG_ExtensionShortName__", "manifest_version": 2, "default_locale": "en", "homepage_url": "https:\/\/rthaut.github.io\/deviantART-Filter", "icons": { "16": "images\/icon-16.png", "19": "images\/icon-19.png", "24": "images\/icon-24.png", "32": "images\/icon-32.png", "38": "images\/icon-38.png", "48": "images\/icon-48.png", "64": "images\/icon-64.png", "96": "images\/icon-96.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "page_action": { "default_icon": { "16": "images\/icon-16.png", "19": "images\/icon-19.png", "24": "images\/icon-24.png", "32": "images\/icon-32.png", "38": "images\/icon-38.png", "48": "images\/icon-48.png", "64": "images\/icon-64.png", "96": "images\/icon-96.png", "128": "images\/icon-128.png" }, "default_title": "__MSG_BrowserActionTitle__" }, "content_scripts": [ { "all_frames": false, "css": [ "styles\/content.css" ], "js": [ "scripts\/content.js" ], "matches": [ "*:\/\/*.deviantart.com\/*" ], "run_at": "document_end" } ], "permissions": [ "*:\/\/*.deviantart.com\/*", "activeTab", "contextMenus", "notifications", "storage", "tabs" ], "web_accessible_resources": [ "pages\/create-filters.html" ], "minimum_chrome_version": "49.0" } |