Copy Link Text 的隐私政策
Copy Link Text 作者: Sytelix
What this extension does NOT do:
-It does NOT collect or access any private information.
-It does NOT track your browsing history or behavior.
-It does NOT transmit any data to external servers.
The permission is simply a technical requirement for enabling the feature across all websites. Rest assured, your privacy is fully respected while using this extension.
NOTE: Why does this extension require the "Access your data for all websites" permission?
This extension uses a content_script to enable the functionality of copying link text directly from any webpage. The following configuration in the manifest.json file makes this possible:
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"content.js"
]
}
]
This permission is required because the extension needs to inject a small script (content.js) into web pages you visit to enable its functionality. However, the extension does not actually collect, store, or transmit your data in any way. It simply listens for user actions (e.g., clicking the "Enable Copy Link Text" button) to toggle the feature on or off for the current page.