內容簡介
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<meta charset="UTF-8">
<title>PrimeBible 外掛總結與問答</title>
</head>
<body>
<h2>文章總結:</h2>
<p>PrimeBible Verse Preview能將您內容中的聖經參考變成互動工具提示,立即顯示經文文字。非常適合神學部落格、教會網站和基督教內容創作者。</p>
<h2>問與答:</h2>
<h3>外掛的關鍵特點有哪些?</h3>
<ul>
<li>自動偵測 - 能在您的內容中找到像 "約翰福音3:16" 或 "羅馬書8:1-4" 等聖經引用。</li>
<li>多種版本 - 可以選擇 KJV、ESV、ASV、WEB 等多種譯本。</li>
<li>行動優化 - 支援觸摸,並提供長按功能支援行動裝置。</li>
<li>超快速 - 透過積極的緩存、懶加載和預取優化實現。</li>
<li>完全可自訂 - 可控制外觀、行為、時間和樣式。</li>
<li>隱私優先 - 除聖經API外,不追蹤也無外部依賴。</li>
<li>無障礙功能 - 支援鍵盤導航和螢幕朗讀器友好。</li>
<li>主題支援 - 亮色、暗色或自動偵測系統偏好。</li>
<li>性能 - 延遲加載、交集偵察器、極少DOM manipulations。</li>
</ul>
<h3>如何使用這個外掛?</h3>
<ul>
<li>安裝並啟用外掛。</li>
<li>設定您偏好的聖經譯本和外觀。</li>
<li>自然書寫內容:"神愛世人(約翰福音3:16)"。</li>
<li>引用會自動變成互動式。</li>
<li>訪客只需滑鼠停留或點擊即可立即看到經文。</li>
</ul>
</body>
</html>
外掛標籤
開發者團隊
原文外掛簡介
PrimeBible Verse Preview transforms Bible references in your content into interactive tooltips that display verse text instantly. Perfect for theology blogs, church websites, and Christian content creators.
Key Features
Automatic Detection – Finds Bible references like “John 3:16” or “Romans 8:1-4” in your content
Multiple Translations – Choose from KJV, ESV, ASV, WEB, and more
Mobile Optimized – Touch-friendly with long-press support for mobile devices
Lightning Fast – Aggressive caching, lazy loading, and prefetch optimization
Fully Customizable – Control appearance, behavior, timing, and styling
Privacy First – No tracking, no external dependencies beyond the Bible API
Accessibility – Keyboard navigation and screen reader friendly
Theme Support – Light, dark, or auto-detect system preference
Performance – Deferred loading, intersection observer, minimal DOM manipulation
How It Works
Install and activate the plugin
Configure your preferred Bible translation and appearance
Write content naturally: “For God so loved the world (John 3:16)”
The reference automatically becomes interactive
Visitors hover or tap to see the verse instantly
Advanced Features
Lazy Scanning – Only processes content when it enters viewport
Smart Caching – LRU cache with configurable size and expiry
Per-Post Control – Disable scanning on specific posts/pages via meta box
Exclude Selectors – Prevent scanning in code blocks, comments, etc.
CSP Compatible – Support for Content Security Policy nonce
Chapter Verse Counts – Optional JSON config for accurate verse range detection
Prefetch – Intelligently preloads nearby references
Analytics Ready – Optional Google Analytics integration
Custom CSS – Add your own styles to match your theme
Perfect For
Theology and Bible study blogs
Church websites and ministries
Christian authors and writers
Seminary and Bible college sites
Devotional and sermon websites
Christian education platforms
Technical Highlights
No jQuery or external library dependencies
Modern vanilla JavaScript (ES2020+)
Deferred script loading for zero blocking
Intersection Observer API for performance
Fetch API with retry logic and timeout
Mobile-first responsive design
Sub-50kb footprint including all assets
Additional Info
About PrimeBible
PrimeBible is a 501(c)(3) nonprofit organization dedicated to making deep Bible study accessible to everyone. Our platform provides free tools including:
* Hebrew and Greek original language analysis
* Strong’s Concordance integration
* Cross-reference explorer
* Biblical timeline
* Scholarly articles on messianic prophecy, textual criticism, and theology
Learn more at primebible.com
Support the Mission
This plugin is free and always will be. If it blesses your ministry, consider:
* Leaving a 5-star review
* Sharing with other Christian content creators
* Donating to support nonprofit Bible study tools at primebible.com/donate
Credits
Developed by the PrimeBible team with love for the global church.
Special thanks to the WordPress community and all beta testers who provided feedback.
Privacy Policy
Data Collection: This plugin does not collect, store, or transmit any personal data about your visitors.
API Requests: When a verse tooltip is displayed, the plugin fetches verse text from primebible.com’s API. These requests include:
– The Bible reference (e.g., “John 3:16”)
– The requested translation (e.g., “KJV”)
No Tracking: PrimeBible does not log IP addresses, track user behavior, or use cookies from these API requests.
Optional Analytics: If you enable the analytics setting, the plugin will fire a Google Analytics event when a tooltip is opened (if GA is already installed on your site). This is disabled by default.
Third-Party Services: The plugin connects to primebible.com’s API to fetch verse text. No other third-party services are used.
For more information, see the PrimeBible Privacy Policy.
Copyright and Licensing
PrimeBible Verse Preview is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
Bible translations are subject to their respective copyright holders. PrimeBible provides access to public domain translations and those licensed for free distribution.
Developer Notes
Hooks and Filters
Filter: primebible_config
Modify the JavaScript configuration before it’s output.
add_filter(‘primebible_config’, function($config) {
$config[‘translation’] = ‘ESV’;
$config[‘theme’] = ‘dark’;
return $config;
});
Action: primebible_before_enqueue
Runs before scripts are enqueued (if loading conditions are met).
add_action(‘primebible_before_enqueue’, function() {
// Your code here
});
Programmatic Control
Disable on specific page by template:
add_filter(‘primebible_should_load’, function($should_load) {
if (is_page_template(‘template-landing.php’)) {
return false;
}
return $should_load;
});
GitHub Repository
Development happens on GitHub: github.com/primebible/wordpress-plugin
Contributions welcome:
– Bug reports
– Feature requests
– Pull requests
– Documentation improvements
Support
Documentation: primebible.com/docs/wordpress-plugin
Support Forum: wordpress.org/support/plugin/primebible-verse-preview
Email: [email protected]
Average Response Time: 24-48 hours
We’re committed to excellent support. If you have an issue, we’ll help you resolve it.
