DarkAlgo
Algo with Dark
What is DarkAlgo?
DarkAlgo is a Chrome extension developed by EXON, and its main feature is "Algo with Dark".
Extension Screenshots
Download DarkAlgo Extension CRX File
Download DarkAlgo extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
알고리즘 사이트 백준을 다크테마로 변경해보세요!
Extension Basic Information
Name | DarkAlgo |
ID | denihfakafbbponodcpmchiglahicadg |
Official URL | https://chromewebstore.google.com/detail/darkalgo/denihfakafbbponodcpmchiglahicadg |
Description | Algo with Dark |
File Size | 856 KB |
Installation Count | 65 |
Current Version | 1.4 |
Last Updated | 2020-09-27 |
Publish Date | 2020-08-28 |
Rating | 5.00/5 Total 2 Ratings |
Developer | EXON |
[email protected] | |
Payment Type | free |
Supported Languages | ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DarkAlgo", "version": "1.4", "description": "Algo with Dark", "permissions": [ "storage", "unlimitedStorage", "https:\/\/www.acmicpc.net\/*" ], "icons": { "16": "icon\/black\/16.png", "32": "icon\/black\/32.png", "64": "icon\/black\/64.png", "128": "icon\/black\/128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.acmicpc.net\/*" ], "js": [ "advertising.js" ], "css": [] } ], "browser_action": { "default_icon": "icon\/black\/1000.png", "default_title": "DarkAlgo", "default_popup": "index.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |