PHP Revival
Extension that every PHP developer must have. Changes styles on php.net for a better experience of using documentation
PHP Revivalคืออะไร?
PHP Revival เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Serhii Cho และคุณลักษณะหลักของมันคือ "Extension that every PHP developer must have. Changes styles on php.net for a better experience of using documentation"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PHP Revival
ดาวน์โหลดไฟล์ส่วนขยาย PHP Revival ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Open source extension (github.com/php-revival/php-revival) that changes styles on php.net website with many other fixes for better experience of using PHP documentation. Extension adds the dark theme to PHP code examples and changes its color schemes and makes User Contributed Notes more readable. The main purpose why it exists is to make it easy to follow the PHP documentation. - It's completely private, we don't get any input from the user. - It's Open Source. GitHub repository: github.com/php-revival/php-revival - After clicking the extension icon you will be redirected to a php.net website. - The extension is completely free and will be free forever. - It's written in TypeScript and SASS. - The extension is active only on php.net websites. It doesn't work on other sites. - It's a very light small extension. - It doesn't make any requests to other servers. Please, if you know other PHP developers, give them a link to this extension. It will definitely help them along the way. Amy suggestions, bugs or feature requests on GitHub issues: https://github.com/php-revival/php-revival/issues
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | PHP Revival |
ID | fceclmihdanbepiogjoeiolnpkalcjpe |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/php-revival/fceclmihdanbepiogjoeiolnpkalcjpe |
คำอธิบาย | Extension that every PHP developer must have. Changes styles on php.net for a better experience of using documentation |
ขนาดไฟล์ | 30.57 KB |
จำนวนการติดตั้ง | 362 |
เวอร์ชันปัจจุบัน | 2.5.0 |
อัปเดตครั้งล่าสุด | 2024-02-26 |
วันที่เผยแพร่ | 2020-05-10 |
คะแนน | 5.00/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Serhii Cho |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://www.buymeacoffee.com/serhiicho |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "PHP Revival", "version": "2.5.0", "web_accessible_resources": [ { "resources": [ "main.css", "main.js", "images\/*", "background.js" ], "matches": [ "*:\/\/www.php.net\/*", "*:\/\/php.net\/*" ] } ], "description": "Extension that every PHP developer must have. Changes styles on php.net for a better experience of using documentation", "icons": { "48": "images\/icon-48.png", "32": "images\/icon-32.png", "64": "images\/icon-64.png", "128": "images\/icon-128.png" }, "action": { "default_icon": "images\/icon-48.png", "default_title": "PHP revival" }, "content_scripts": [ { "matches": [ "*:\/\/www.php.net\/*", "*:\/\/php.net\/*" ], "css": [ "main.css" ], "run_at": "document_start" }, { "matches": [ "*:\/\/www.php.net\/*", "*:\/\/php.net\/*" ], "js": [ "main.js" ] } ], "background": { "service_worker": "background.js" } } |